Last active
August 24, 2020 09:36
-
-
Save gauravmehla/e6be39426235380ab8e176aff0c9cff9 to your computer and use it in GitHub Desktop.
Commands.sh
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
# Node JS Installation | |
sudo apt update | |
sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates | |
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
# Speedtest | |
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python - | |
# Install GOLANG | |
wget https://dl.google.com/go/go1.13.3.linux-amd64.tar.gz | |
sudo tar -xvf go1.13.3.linux-amd64.tar.gz | |
sudo mv go /usr/local | |
export GOROOT=/usr/local/go | |
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH | |
INSERT INTO `place_type` (`id`, `title`, `timestamp_create`, `timestamp_update`, `updated_by_user_id`, `created_by_user_id`) VALUES ('1', 'Home', '2019-09-09 09:17:48', '2019-09-09 09:17:48', '1', '1'); | |
INSERT INTO `place_type` (`id`, `title`, `timestamp_create`, `timestamp_update`, `updated_by_user_id`, `created_by_user_id`) VALUES ('2', 'Office', '2019-09-09 08:17:48', '2019-09-09 08:17:48', '1', '1'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment