Below you will find basic setup instructions for the unicefng
project. To begin you should have the following applications installed on your
local development system:
To setup your local environment you should create a virtualenv and install the necessary requirements:
virtualenv unicefng-env
On Posix systems you can activate your environment like this:
source unicefng-env/bin/activate
On Windows, you'd use:
unicefng-env\Scripts\activate
Then:
cd unicefng pip install -U -r requirements/base.txt
Run migrate:
python manage.py migrate
You should now be able to run the development server:
python manage.py runserver