Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 892 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 892 Bytes

sana.pchr-web

Web applications and server configs/scripts for Lebanon PCHR project.

Circle CI

Running Locally

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