A project built with Django to showcase various features and concepts of the framework.
This project demonstrates the implementation of Django features such as models, views, templates, URL routing, forms, user authentication, and database management.
- Virtual environment setup
- Models, views, and URL routing
- Use of templates and HTML templates
- User authentication and authorization
- Handling forms and database management using Django ORM
To run the project, follow these steps:
# Create virtual environment
python3 -m venv env
# Activate virtual environment
source env/bin/activate
# Install dependencies
pip install -r requirements.txt
# Run migrations
python manage.py migrate
# Start the server
python manage.py runserver