Django DF Survey - create and manage surveys and on-boarding forms in your DjangoFlow project
- Install the package
pip install django-df-survey
- Include default
INSTALLED_APPS
fromdf_survey.defaults
to yoursettings.py
from df_survey.defaults import DF_SURVEY_INSTALLED_APPS
INSTALLED_APPS = [
...
*DF_SURVEY_INSTALLED_APPS,
...
]
Installing dev requirements:
pip install -e .[test]
Installing pre-commit hook:
pre-commit install
Running tests:
pytest