Last active
September 12, 2015 07:59
-
-
Save arrowrowe/1b24b55ee4e97e46620f to your computer and use it in GitHub Desktop.
Revisions
-
arrowrowe revised this gist
Sep 12, 2015 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -14,5 +14,6 @@ sudo apt-get -y install nginx #### Node ############################### sudo apt-get -y install build-essential libssl-dev wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.26.1/install.sh | bash printf "\nexport NVM_DIR=\"$NVM_DIR\"\n[ -s \"\$NVM_DIR/nvm.sh\" ] && . \"\$NVM_DIR/nvm.sh\" # This loads nvm\n\n" >> ~/.zshrc . ~/.bashrc nvm install v4.0.0 -
arrowrowe revised this gist
Sep 12, 2015 . 1 changed file with 7 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,10 +4,15 @@ sudo apt-get update #### Oh My ZSH ########################## sudo apt-get -y install zsh git-core wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh chsh -s `which zsh` #### Nginx ############################## sudo apt-get -y install nginx #### Node ############################### sudo apt-get -y install build-essential libssl-dev wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.26.1/install.sh | bash . ~/.bashrc nvm install v4.0.0 -
arrowrowe revised this gist
Sep 12, 2015 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,10 +4,10 @@ sudo apt-get update #### Oh My ZSH ########################## sudo apt-get -y install ZSH sudo apt-get -y install git-core wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh chsh -s `which zsh` #### Nginx ############################## sudo apt-get -y install nginx -
arrowrowe created this gist
Sep 12, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ #!/bin/bash #### Necessary Update ################### sudo apt-get update #### Oh My ZSH ########################## sudo apt-get install ZSH sudo apt-get install git-core wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh chsh -s `which zsh` #### Nginx ############################## sudo apt-get install nginx