Skip to content

Instantly share code, notes, and snippets.

@blair55
Created October 9, 2013 22:17
Show Gist options
  • Select an option

  • Save blair55/6909468 to your computer and use it in GitHub Desktop.

Select an option

Save blair55/6909468 to your computer and use it in GitHub Desktop.
Bootstrap to be run with Vagrant shell provisioning to develop Python Websockets Chat app locally
sudo apt-get update
sudo apt-get install python-dev -y
sudo apt-get install python-pip -y
sudo apt-get install libevent-dev -y
sudo apt-get install ruby1.9.1-full -y
sudo apt-get install build-essential -y
sudo apt-get install tcl8.5 -y
sudo wget http://download.redis.io/releases/redis-2.6.16.tar.gz
sudo tar xzf redis-2.6.16.tar.gz
cd redis-2.6.16
sudo make
sudo make install
sudo gem install bundler --no-rdoc --no-ri
sudo gem install foreman --no-rdoc --no-ri
cd /vagrant
sudo pip install -r requirements.txt
redis-server &
foreman start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment