- You should have installed Python 2.7, pip and virtualenv.
Under Debian / Ubuntu, this should be as easy as:
apt-get install python2.7 python-pip virtualenvwrapper
You might need to install additional dependencies such as:
apt-get install libxml2-dev libxslt-dev libpq-dev python-dev
On Mac OS with homebrew, you should install:
brew install python
brew pip install virtualenvwrapper
-
Type
mkvirtualenv owf
or 'virtualenv owf' (second parameter is the name of your cloned directory) -
Type
pip install -r deps.txt
(you might need to run this command as root user, or with sudo) -
Type
make run
and point your browser to the URL given by the logs (eg. http://0.0.0.0:5002/).
-
Install Vagrant (http://www.vagrantup.com/)
-
Run
vagrant up
-
Run
vagrant ssh -c 'cd /vagrant ; make run'
-
Point your browser to http://localhost:5002/
Every changes you do in the project file (on the host machine) should be available immediately on browser.
Not done yet.