This document explains how to set up and run this Django project on your local machine.
Ensure that the following software is installed on your system:
- Python (3.10 or higher)
- pip (Python package manager)
- Virtualenv (optional but recommended)
- Git (for cloning the repository)
Follow the steps below to set up and run the project.
First, clone the repository to your local machine using Git.
git clone <your-repository-url>
cd <your-project-directory>
python -m venv env
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver