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