A beneficiary in either a health facility or in project implementation.
The full documentation is at https://dj-beneficiary.readthedocs.io.
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)),
...
]
- TODO
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!
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
pip install -r requirements_dev.txt invoke -l