Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 614 Bytes

README.rst

File metadata and controls

25 lines (17 loc) · 614 Bytes

Core Explore Example App

Exploration by example for the curator core project.

Quick start

1. Add "core_explore_example_app" to your INSTALLED_APPS setting

INSTALLED_APPS = [
  ...
  'core_explore_example_app',
]

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

url(r'^explore/example/', include('core_explore_example_app.urls')),