Skip to content

Instantly share code, notes, and snippets.

@sofer
Last active December 19, 2015 06:19
Show Gist options
  • Save sofer/5910339 to your computer and use it in GitHub Desktop.
Save sofer/5910339 to your computer and use it in GitHub Desktop.
Bootstrap an Amazon S3 instance
echo "sudo apt-get install -y git-core"
sudo apt-get install -y git-core
echo "wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh"
wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh
echo "heroku login"
heroku login
echo "ssh-keygen -t rsa"
ssh-keygen -t rsa
echo "heroku keys:add"
heroku keys:add
echo "sudo apt-get update"
sudo apt-get update
echo "sudo add-apt-repository ppa:chris-lea/node.js"
sudo add-apt-repository ppa:chris-lea/node.js
echo "sudo apt-get update"
sudo apt-get update
echo "sudo apt-get install nodejs"
sudo apt-get install nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment