Last active
July 7, 2020 12:24
-
-
Save ehaselwanter/8120c4778f555139596f45026d01ab35 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
| #!/bin/bash | |
| # install ansible and friends | |
| zypper addrepo https://download.opensuse.org/repositories/systemsmanagement/SLE_15_SP1/systemsmanagement.repo | |
| zypper refresh | |
| zypper install ansible git unzip | |
| # install code-server see <https://github.com/cdr/code-server/blob/master/doc/guide.md#requirements> | |
| curl -fsSL https://code-server.dev/install.sh | sh | |
| # install ngrok | |
| curl -O https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip | |
| unzip ngrok-stable-linux-amd64.zip | |
| # run it with: | |
| # code-server & | |
| # grep password: ~/.config/code-server/config.yaml | |
| # ./ngrok http 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment