Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 844 Bytes

requirements-setup.rst

File metadata and controls

31 lines (21 loc) · 844 Bytes

Requirements and Setup

Install django-form-builder` .. code-block:: python python setup.py install # or pip install django-form-builder OnlyFileSignatureValidatorlibrary is required as system dependency, it is needed to verify digitally signed attachments. See also requirements for python requirements. .. code-block:: python pip install git+https://github.com/peppelinux/FileSignatureValidator.git InINSTALLED_APPSincludedjango_form_builder`` app.

INSTALLED_APPS = (
    # other apps
    'django_form_builder',
)