https://drive.google.com/file/d/1vkaN5OSkbHYFSAoEOnHSHWCNGiCw1eEo/view?usp=sharing
- Python ≥ 3.10 and ≤ 3.11
- pip ≥ 22.x
- Node.js ≥ 18.x
- npm ≥ 9.x
# Navigate to backend directory
cd backend
# Install dependencies
pip install -r requirements.txt
# Run the FastAPI server
uvicorn main:app --reload --host localhost --port 8000 # Navigate to frontend directory
cd frontend
# Install dependencies
npm install
# Run the development server
npm run dev