Last active
June 25, 2017 21:29
-
-
Save gardner/039781d2f24aa7700dff1576cdad74b4 to your computer and use it in GitHub Desktop.
provision an instance of vanityssb
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/sh | |
export DEBIAN_FRONTEND=noninteractive | |
apt-get update && apt-get upgrade -y && apt-get install build-essential git curl screen -y | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash | |
source .bashrc | |
nvm install v6 | |
git clone https://github.com/gardner/vanityssb.git | |
cd vanityssb | |
npm i | |
screen -d -m node ./index.js gardner |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment