City Locations is a Django app that can be installed in an existing Django project Documentation: https://toddpy-django-cityloc-pkg.readthedocs.io/en/latest/
- Add "citylocations" to your INSTALLED_APPS setting in settings.py:
- INSTALLED_APPS = [
...
'citylocations',
]
- Include the citylocations URLconf in your project urls.py like this::
path('', include('citylocations.urls')),
Start the development server and visit http://127.0.0.1:8000/