Created
March 8, 2024 03:41
-
-
Save dezren39/3db6f36a5d16e047a0d32e0054df94b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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