Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 571 Bytes

README.rst

File metadata and controls

26 lines (16 loc) · 571 Bytes

cat_scian

gdmty-django-scian is a Django app to get a SCIAN Catalog.

Quick start

  1. Add "polls" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...,
        "cat_scian.apps.ScianConfig",
    ]
    
  2. Include the polls URLconf in your project urls.py like this:

    path("cat_scian/", include("cat_scian.urls")),
    
  3. Run python manage.py migrate to create the models.

  4. Start the development server and visit the admin to see the tree.

  5. Visit the /cat_scian/ URL to participate in the poll.