MyAdvisor

Setup
Create virtual environment
python -m venv venv
source venv/bin/activate   # On Windows: venv\Scripts\activate

Install dependencies
pip install -r requirements.txt

Make migration files
python manage.py makemigrations

Migrate changes to the database
python manage.py migrate

Create superuser for admin access
python manage.py createsuperuser

Run development server
python manage.py runserver
Now visit: http://127.0.0.1:8000/

Access the MyAdvisor Admin Page at http://127.0.0.1:8000/admin/


