- ✨ Models: Implemented models for storing data.
- ✨ Views: Implemented views for handling HTTP requests and responses.
- ✨ Forms: Utilized forms for data input and validation.
- ✨ Static Files: Demonstrated serving static files such as CSS, JavaScript, and images.
- ✨ CRUD Operations: Implemented CRUD (Create, Read, Update, Delete) operations for database entities.
- 🚀 Clone this repository.
- 📂 Navigate to the specific project you're interested in.
- 🔧 Follow the instructions provided in the project's README.md to set up and run the project locally.
To create a new Django project, run the following command:
django-admin startproject myproject
To create a new Django application, run the following command:
cd myproject
python3 manage.py startapp appname
To Run Django project, run the following command:
python3 manage.py runserver
To Run Testcases, run the following command:
python manage.py test testapp