-
Open a bash terminal if you are using Windows. On unix based systems open the default terminal.
-
Navigate into the backend folder
cd backend
- Create a python virtual environment
python -m venv env
4a. Activate the environment (Windows)
source env/Scripts/activate
4b. Activate the environment (Mac)
source env/bin/activate
- Install the nessessary modules & dependencies
pip install -r requirements.txt
- Start the server
uvicorn main:app --reload
- Navigate into the frontend folder
cd frontend
- Install the nessessary modules & dependencies
yarn install
- Run the client (Ensure the server is also running)
yarn dev
- Type the following url into your browser to access the website
http://localhost:5173