- Install dependencies (in frontend directory)
npm install
- copy .env.dev to .env and put in a websocket url
- Create a virtual environment (in backend directory)
python3 -m venv venv
- Activate the virtual environment
source venv/bin/activate
- install requirements.txt
pip install -r requirements.txt
- copy .env.dev to .env and put in your openai api key
- Start frontend (in frontend directory)
npm run dev
- Start backend (in backend directory)
python3 app.py
- open http://localhost:5173 in your browser