-
Notifications
You must be signed in to change notification settings - Fork 25
home
Janez edited this page Dec 11, 2013
·
20 revisions
- 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-envvirtualenv --no-site-packages mothra-env
cd mothra-env
source bin/activateObtain the url to your git repository.
git clone [email protected]:mothra.gitcd mothra
pip install -r requirements.txtcp mothra/__local_settings.py mothra/local_settings.py
vi mothra/local_settings.pypython manage.py syncdbpython manage.py migratepython manage.py auto_import_packagespython manage.py runserverpython manage.py runserver_plusOpen browser to http://127.0.0.1:8000