Helping you form hobbits. Or maybe habits. But hobbits are better.
These instructions allow you to set up an environment on Mac OSX. You can also use a VM - see https://github.com/devfort/shire.
You need virtualenv:
pip install virtualenv virtualenvwrapper
You also need PostgreSQL and Sass (if you are running it on Mac OSX rather than in the VM).
-
Make a virtualenv and move into it
mkvirtualenv hobbit && cd hobbit
-
Bootstrap your installation (provide super user details when prompted)
./tools/bootstrap
-
Run the dev server
honcho -f Procfile.dev start
-
Open your web browser to http://localhost:8000/
Next time:
-
Load the virtualenv and move into it
workon hobbit && cd hobbit
-
Continue the above from step 3