Web applications and server configs/scripts for Lebanon PCHR project.
You'll need Python 3, pip, and virtualenv installed first. Note: Your
Python 3 should installation must have the header files-i.e. install
python3-dev
or similar package on Linux systems.
virtualenv -p python3 env
source env/bin/activate
pip install -r requirements_dev.txt
python manage.py syncdb
You'll be prompted to create a superuser account when running python manage.py syncdb
- it can be used on the admin interface.
Then, to run the server:
python manage.py runserver
Or the tests:
invoke tests