- Navigate to
client/, and install the dependencies,
- Navigate to
server/, and create a virtual environment venv, activate the virtual environment and install the dependencies,
cd server && python -m venv venv && .\.venv\Scripts\Activate && pip install -r requirements.txt
or
cd server && python3 -m venv venv && source ./venv/bin/activate && pip3 install -r requirements.txt
- Start the backend server,
cd server && fastapi dev main.py
- Start the client server,
- In
server/ directory, create a secrets.py file and add your Gemini API Key,
GEMINI_API = '<YOUR_GEMINI_API_KEY>'