Created
October 9, 2013 22:17
-
-
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
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
| 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