-
Notifications
You must be signed in to change notification settings - Fork 6
Home
Mert Salık edited this page Apr 4, 2017
·
3 revisions
Welcome to the ituro wiki!
# clone it
git clone https://github.com/ITURO/ituro.git
# go to project folder
cd ~/somewhere/over/the/rainbow/ituro
# Install virtualenv
virtualenv .
# Activate virtual environment
source bin/activate
# Install dependencies
pip install -r requirements/develop.txt
pip install -r requirements/deploy.txt (just for deploying - requires pg)
# migrate the db
python ituro/manage.py migrate
# create superuser
python ituro/manage.py createsuperuser
# prepare localized messages
python ituro/manage.py compilemessages
# run development server
python ituro/manage.py runserver 0.0.0.0:8000
MIT