DJANGO 4.2.13

Welcome — the install worked.

You're seeing this page because DEBUG=True is set in your settings module and no URL patterns are configured yet for the root path.

Database connection OK · Static files configured · Admin site available at /admin/


To begin shipping a real application:

  1. Edit config/urls.py and replace this view.
  2. Create your first app with python manage.py startapp blog.
  3. Register it in INSTALLED_APPS.
  4. Run python manage.py makemigrations when you change models.