Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 681 Bytes

README.md

File metadata and controls

51 lines (32 loc) · 681 Bytes

Getting started

Install and prepare

Frontend

  1. Install dependencies (in frontend directory)
npm install
  1. copy .env.dev to .env and put in a websocket url

backend

  1. Create a virtual environment (in backend directory)
python3 -m venv venv
  1. Activate the virtual environment
source venv/bin/activate
  1. install requirements.txt
pip install -r requirements.txt
  1. copy .env.dev to .env and put in your openai api key

Running the app

  • Start frontend (in frontend directory)
npm run dev
  • Start backend (in backend directory)
python3 app.py