-
Install the app from GitHub:
pipenv install -e git+https://github.com/reuters-graphics/django-myapp.git#egg=django-myapp
-
Add "myapp" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ # ... "myapp", ]
-
Include the myapp URLconf in your project's
urls.py
like this:from django.urls import include, path urlpatterns = [ # ... path("myapp/", include("myapp.urls")), ]
-
Run
python manage.py migrate
to create the myapp models.
Read more about developing this app in the Developing docs.