Django Typeform¶
A Typeform integration for Django
Documentation¶
The full documentation is at https://django-typeform.readthedocs.io.
Quickstart¶
Install Django Typeform:
pip install django-typeform
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_typeform.apps.DjangoTypeformConfig',
...
)
Add Django Typeform’s URL patterns:
from django_typeform import urls as django_typeform_urls
urlpatterns = [
...
url(r'^', include(django_typeform_urls)),
...
]
Features¶
- TODO
Running Tests¶
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox