Skip to content

Instantly share code, notes, and snippets.

@Atharv-Pathak-14
Forked from SilentJungle399/init.sh
Created July 27, 2021 03:19
Show Gist options
  • Save Atharv-Pathak-14/bccb6954846502d9ea32172b6a98dff6 to your computer and use it in GitHub Desktop.
Save Atharv-Pathak-14/bccb6954846502d9ea32172b6a98dff6 to your computer and use it in GitHub Desktop.
Run an instance of Visual Studio Code on any cloud platform
if [[ ! -d code-server-3.9.3-linux-amd64 ]]
then
wget https://github.com/cdr/code-server/releases/download/v3.9.3/code-server-3.9.3-linux-amd64.tar.gz
tar xvzf code-server-3.9.3-linux-amd64.tar.gz
fi
cd code-server-3.9.3-linux-amd64/bin
# ./code-server --install-extension extension.id
./code-server --bind-addr 0.0.0.0:8080 --auth password
@Atharv-Pathak-14
Copy link
Author

Hi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment