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