Open the entire backend folder in an IDE. Then in that terminal, run the following commands:
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- Create a
.env
file atbackend/.env
- Add
MONGO_URI=<connection_string>
to the.env
Run the command uvicorn main:app --reload
Navigate inside the frontend folder. Then in the terminal, run npm install
Run the command npm run dev