django_webapps_fullstack.settings.urlsΒΆ

Main project URL configuration for the dingx Django application.

This is the root URL configuration that includes all app-level URL patterns and configures custom error handlers for production-ready error pages. The application provides a logistics management platform for tracking and organizing physical belongings across different locations.

Application Structure:

  • / - Landing page (public home page)

  • /account/ - User authentication and account management

  • /dashboard/ - Inventory management and user profiles (authenticated)

Error Handling:

Custom error handlers are configured for production environments: - 400 Bad Request - 403 Forbidden - 404 Not Found - 500 Internal Server Error - 502 Bad Gateway - 503 Service Unavailable

Testing Routes (development only):

Test endpoints for triggering error pages during development and testing. These should be disabled or protected in production environments.

Integration:

All authenticated endpoints communicate with the Odoo ERP system via the Twisted XMLRPC server for centralized data management and business logic processing.

For more information see: https://docs.djangoproject.com/en/5.2/topics/http/urls/