- python >= 2.5
- pip
- virtualenv/wrapper (optional)
Create a virtual python enviroment for the project. If you're not using virtualenv or virtualenvwrapper you may skip this step.
mkvirtualenv --no-site-packages --distribute jazzchangesenv
virtualenv --no-site-packages --distribute jazzchangesenv
cd jazzchangesenv
source bin/activate
Obtain the url to your git repository.
git clone https://github.com/bryanhelmig/jazzchanges jazzchanges
cd jazzchanges
pip install -r requirements.txt
cp jazzchanges/__local_settings.py jazzchanges/local_settings.py
vi jazzchanges/local_settings.py
python manage.py syncdb
python manage.py migrate
python manage.py runserver
Open browser to 127.0.0.1:8000