Skip to content

A reusable django app for defining and managing beneficiary data in either a health facility or in project implementation.

License

Notifications You must be signed in to change notification settings

Digital-Prophets/dj-beneficiary

Repository files navigation

django-beneficiary

https://travis-ci.org/sonlinux/dj-beneficiary.svg?branch=master

A beneficiary in either a health facility or in project implementation.

Documentation

The full documentation is at https://dj-beneficiary.readthedocs.io.

Quickstart

Install django-beneficiary:

pip install dj-beneficiary

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'dj_beneficiary.apps.DjBeneficiaryConfig',
    ...
)

Add django-beneficiary's URL patterns:

from dj_beneficiary import urls as dj_beneficiary_urls


urlpatterns = [
    ...
    url(r'^', include(dj_beneficiary_urls)),
    ...
]

Features

  • TODO

Running in Development

Are you writing code to improve this package?

virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
pip install -r requirements_dev.txt

# then you can work with regular django development commands
python manage.py migrate
python manage.py collectstatic
python manage.py createsuperuser
python manage.py runserver

# and happy coding!

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Development commands

pip install -r requirements_dev.txt
invoke -l

Credits

Digital Prophets

About

A reusable django app for defining and managing beneficiary data in either a health facility or in project implementation.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published