This repository is part of the Engineering Design course in our first semester. It contains the source code for a website that acts as a connecting interface between guides and their respective guided individuals.
Follow these steps to set up and run the project on your local machine:
-
Clone the repository:
git clone [<repository-url>](https://github.com/sss2482/eg.git) cd eg
-
Create a virtual enviroment
python -m venv <venv_name>
-
Activate the virtual environment
<venv_name>\Scripts\activate # For Windows source <venv_name>/bin/activate # For macOS/Linux
-
Install dependencies
pip install -r requirements.txt
-
Set up the database
py manage.py makemigrations py manage.py migrate
-
Run the server
py manage.py runserver