Skip to content
This repository was archived by the owner on May 18, 2026. It is now read-only.

Latest commit

 

History

History
35 lines (24 loc) · 752 Bytes

File metadata and controls

35 lines (24 loc) · 752 Bytes

malaria24

This is an application scaffold for Molo. The Molo bits have been ripped out though as this is largely a headless application with only a Django CMS.

Getting started

To get started:

$ virtualenv ve
$ source ve/bin/activate
$ pip install -e git+git://github.com/onaio/onapie.git#egg=onapie
$ pip install -e .
$ pip install -r requirements.txt
$ ./manage.py migrate
$ ./manage.py createsuperuser
$ ./manage.py runserver

You can now connect access the demo site on http://localhost:8000

Running Tests

To run tests:

$ pip install -r requirements.txt
$ pip install -r requirements-dev.txt
$ py.test