app is a Django app to conduct web-based worldwide map. it lists out all continents, countries, states
Add "app" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ..., "app", ]
Include the app URLconf in your project urls.py like this:
path("app/", include("app.urls")),
Run
python manage.py migrate
to create the app models.Start the development server and visit http://127.0.0.1:8000/admin/ to create a poll (you'll need the Admin app enabled).
Visit http://127.0.0.1:8000/app/ to participate in the worldmap.