Created
February 22, 2013 00:34
-
-
Save jeffrydegrande/5009813 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 | |
export DEBIAN_FRONTEND=noninteractive | |
wget -q -O - http://apt.hellobits.com/hellobits.key | apt-key add - | |
echo "deb http://apt.hellobits.com/ precise main" > /etc/apt/sources.list.d/hellobits.list | |
apt-get update | |
apt-get install -y build-essential \ | |
git \ | |
memcached \ | |
postgresql \ | |
libpq-dev \ | |
redis-server \ | |
nodejs \ | |
ruby-stable | |
gem install bundler foreman heroku |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment