- Navigate to
client/, and install the dependencies,
cd client && npm install- Navigate to
server/, and create a virtual environmentvenv, 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,
cd client && npm run dev- In
server/directory, create asecrets.pyfile and add your Gemini API Key,
GEMINI_API = '<YOUR_GEMINI_API_KEY>'