Created
July 25, 2013 21:33
-
-
Save rbonvall/6083975 to your computer and use it in GitHub Desktop.
Setup for EC2 instances created for the Startup Engineering class
This file contains 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
sudo apt-get install -y git | |
sudo apt-get install -y curl | |
curl https://raw.github.com/creationix/nvm/master/install.sh | sh | |
# Load nvm and install latest production node | |
source $HOME/.nvm/nvm.sh | |
nvm install v0.10.12 | |
nvm use v0.10.12 | |
npm install -g jshint | |
sudo apt-get install -y rlwrap | |
## Install emacs24 | |
## https://launchpad.net/~cassou/+archive/emacs | |
#sudo apt-add-repository -y ppa:cassou/emacs | |
#sudo apt-get -qq update | |
#sudo apt-get install -y emacs24-nox emacs24-el emacs24-common-non-dfsg | |
cd $HOME | |
git clone https://github.com/rbonvall/dotfiles | |
(cd dotfiles && for i in bash* gitconfig inputrc; do ln -s $PWD/$i ~/.$i; done) | |
git clone https://github.com/rbonvall/dotvim | |
(cd dotvim && ./install.sh) | |
git clone https://github.com/rbonvall/bitstarter | |
# Install Heroku toolbelt | |
# https://toolbelt.heroku.com/debian | |
wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment