Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 806 Bytes

PROJECT_README.md

File metadata and controls

37 lines (25 loc) · 806 Bytes

django-myapp

Quickstart

  1. Install the app from GitHub:

    pipenv install -e git+https://github.com/reuters-graphics/django-myapp.git#egg=django-myapp
  2. Add "myapp" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        # ...
        "myapp",
    ]
  3. Include the myapp URLconf in your project's urls.py like this:

    from django.urls import include, path
    
    urlpatterns = [
       # ...
       path("myapp/", include("myapp.urls")),
    ]
  4. Run python manage.py migrate to create the myapp models.

Developing

Read more about developing this app in the Developing docs.