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