http://selfserve.herokuapp.com/
npm install
npm install -g gulp
You'll also have to load in the code for the included submodules. These are managed in separately by git.
git submodule init
git submodule update
Virtualenv provides a way to keep different project environments isolated.
sudo pip install virtualenv
virtualenv venv
. venv/bin/activate
pip install -r requirements.txt
gulp watch
It will recompile the SASS every time a file changes.
python manage.py runserver
or
foreman start
The app will run at http://localhost:8000
heroku git:remote -a selfserve
heroku config:set BUILDPACK_URL=https://github.com/heroku/heroku-buildpack-python
git push heroku master