JSON support for the curator core project


License
Other
Install
pip install core-json-app==1.0.0a13

Documentation

Core JSON App

Add JSON support to the curator core project.

Quick start

1. Add "core_json_app" to your INSTALLED_APPS setting

INSTALLED_APPS = [
  ...
  'core_json_app',
]

2. Include the core_json_app URLconf in your project urls.py

re_path(r'^', include('core_json_app.urls')),
re_path(r'^', include("core_main_app.urls")),

Url for core_json_app should be placed above core_main_app.