backend
contains the main code for the projectprovision
contains provision code used for setting up the environment
- Install python (2.7)
- Install pip
- pip install -r backend/requirements.txt
- Setting up the database
python manage.py syncdb
- Migrate database schema
python manage.py migrate
- Manually create an admin user
python manage.py createsuperuser
- python manage.py runserver
- python manage.py celery worker --loglevel=info
- There are provision code for using with chef-solo. The code is stored inside
provision/chef
- The provision code is compatible with
vagrant