Skip to content

usnistgov/core_exporters_app

Repository files navigation

Core Exporters App

Exporters for the curator core project.

Quick start

1. Add "core_exporters_app" to your INSTALLED_APPS setting

INSTALLED_APPS = [
  ...
  'core_exporters_app',
]

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

url(r'^exporter/', include("core_exporters_app.urls")),