This file contains 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
#!/bin/sh | |
# Download Latest Go Binary | |
wget https://dl.google.com/go/go1.13.4.linux-amd64.tar.gz | |
# Install Go Language | |
sudo tar -C /usr/local -xzf go1.13.4.linux-amd64.tar.gz | |
# Add /usr/local/go/bin to the PATH | |
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.profile |
This file contains 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
#!/bin/sh | |
# LTS Release | |
sudo apt-get install curl software-properties-common | |
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash - | |
# Install Node.js | |
sudo apt-get install -y nodejs npm |
This file contains 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
#!/bin/sh | |
set -e | |
# Install dependencies. | |
sudo apt install -y curl apt-transport-https \ | |
software-properties-common ca-certificates | |
# Install docker. | |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - |
NewerOlder