Skip to content

Instantly share code, notes, and snippets.

@dezren39
Created March 8, 2024 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dezren39/3db6f36a5d16e047a0d32e0054df94b8 to your computer and use it in GitHub Desktop.
Save dezren39/3db6f36a5d16e047a0d32e0054df94b8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env sh
dietpi-software install 188 # install latest go version (and git)
apt update
apt install -y wget
wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell_7.4.1-1.deb_amd64.deb
dpkg -i powershell_7.4.1-1.deb_amd64.deb
apt install -f
rm powershell_7.4.1-1.deb_amd64.deb
# curl -fsSL https://deb.nodesource.com/setup_21.x | bash - &&\
# apt-get install -y nodejs
apt install npm
npm install -g npm@latest
git clone https://github.com/developing-today/code
cd code/source/identity
chmod +x *.ps1
./start-server-all.ps1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment