Follow these steps to set up and run the Django project.
- Python 3.x
- pip (Python package installer)
- virtualenv (optional but recommended)
-
Clone the repository:
-
Create and activate a virtual environment (optional but recommended):
python3 -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the required packages:
pip install -r requirements.txt
-
Apply migrations to set up the database:
python manage.py migrate
-
Start the development server:
python manage.py runserver
-
Open your web browser and visit:
http://127.0.0.1:8000/