- Python 3.x
- Node.js & npm
- Navigate to the backend source directory:
cd backend/src - Install the required Python dependencies:
pip install -r ../requirements.txt
- Start the FastAPI server:
The backend will be running on
uvicorn main:app --reload
http://127.0.0.1:8000.
- Navigate to the frontend directory:
cd frontend - Install npm dependencies:
npm install
- Start the development server:
The frontend will be available at
npm run dev
http://localhost:5173.