- 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 wheretogo-env
virtualenv --no-site-packages wheretogo-env
cd wheretogo-env
source bin/activate
Obtain the url to your git repository.
git clone https://vasyabigi@github.com/equeny/wheretogo.git wheretogo
cd wheretogo
pip install -r requirements.txt
cp wheretogo/__local_settings.py wheretogo/local_settings.py
vi wheretogo/local_settings.py
python manage.py syncdb
python manage.py runserver
Open browser to http://127.0.0.1:8000