Introduced launch.json to streamline debugging of Django applications with Visual Studio Code. This configuration sets up the Python Debugger to launch Django's runserver on port 8114, enhancing the development experience by enabling easy and efficient debugging.
Initialized a new Django project named "dbjsubmissions" with essential
configuration and initial app setup. Added .gitignore to ignore common
unwanted files.
Implemented models, views, forms, templates, and urls for managing
manuscript submissions. Configured settings for basic functionality,
including required third-party packages in requirements.txt.
Supports user registration, login, and manuscript submission workflows.