This project is a scheduling application built with Django.
Before you begin, ensure you have met the following requirements:
- You have installed the latest version of Python.
The backend of the project is located in the schedule
directory.
-
Navigate to the
schedule
directory. -
Create a virtual environment and activate it:
python3 -m venv .env
.env/Scripts/activate
If you get an error saying you can't run the script, run this command:
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned
source .env/bin/activate
-
Install the required Python packages:
pip install -r requirements.txt
-
Run the Django migrations:
python manage.py migrate
-
Start the Django server:
python manage.py runserver
Now, you should be able to access the application at http://localhost:8000.