This guide will help you set up and run the StudentDashboard Django project on your local machine.
- Python 3.x
- Django 5.1.2
- Virtual environment tool (e.g.,
venv)
git clone <repository-url>
cd StudentDashboard
Create and activate a virtual environment:
python -m venv .venv
source .venv/bin/activate # On Windows use `.venv\Scripts\activate`
pip install -r requirements.txt
python manage.py makemigrations StudentDashboard
python manage.py migrate
python manage.py runserverIn order of accessing the admin page you need to create a superuser
python manage.py createsuperuserMade for WDP course