Page not found (404)

Request Method: GET
Request URL: http://localhost:8000/

Using the URLconf defined in GoodFitApiServer.urls, Django tried these URL patterns, in this order:

  1. admin/
  2. api/internal/register [name='account_register']
  3. api/internal/activate-account [name='account_activation']
  4. api/internal/confirm-registration [name='confirm_registration']
  5. api/internal/login [name='account_login']
  6. api/internal/logout [name='account_logout']
  7. api/internal/reset-password [name='password_reset']
  8. api/internal/change-password [name='password_change']
  9. api/internal/subscribe-email [name='subscribe_email']
  10. api/internal/account-settings [name='process-account-settings']
  11. api/internal/brand [name='get_brands_internal']
  12. api/external/brand [name='get_brands']
  13. api/internal/profile [name='create_profile']
  14. api/internal/profile/<str:user_profile_id> [name='process_profile']
  15. api/internal/profiles [name='list_profiles']
  16. api/external/profiles [name='list_profiles']
  17. api/internal/shared-profiles [name='get_shared_profiles']
  18. api/internal/profile/<str:user_profile_id>/share [name='process_sharing_profile']
  19. api/internal/profile/<str:user_profile_id>/measure/<str:measure_id> [name='process_measure']
  20. api/internal/profile/<str:user_profile_id>/measure/<str:measure_type_id>/history [name='get_measure_history']
  21. api/internal/measure/type [name='get_measure_types']
  22. api/internal/category [name='get_cloth_types']
  23. api/internal/profile/<str:user_profile_id>/measures [name='list_measures']
  24. api/internal/size [name='get_size_internal']
  25. api/external/size [name='get_size_external']
  26. swagger<str:format> [name='schema-json']
  27. swagger/ [name='schema-swagger-ui']
  28. redoc/ [name='schema-redoc']

The empty path didn’t match any of these.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.