Skip to content

Latest commit

 

History

History
42 lines (24 loc) · 894 Bytes

installation.rst

File metadata and controls

42 lines (24 loc) · 894 Bytes

Installation

Requirements:

  • Python >= 3.4
  • Django >= 2.0

Install using pip:

$ pip install django-jsonform

We also upload pre-built packages on Github in case pip or PyPI server isn't working.

Update your project's settings:

# settings.py

INSTALLED_APPS = [
    # ...
    'django_jsonform'
]

Upgrading notes

When upgrading from an older version of this library, please ensure that your browser is loading the latest static JavaScript files that come with this library:

  • In the development environment, clear the browser cache.
  • In the production environment, you must run the collectstatic command to update the static files.

Next, go to quickstart page for basic usage instructions.