-
Download the
data.zipand unzip it to./data -
Create
./.envfor the OPENAI API
# .env
OPENAI_API_KEY=YOUR_API_KEY
- Build docker
docker-compose -f docker-compose_local.yml build
- Run docker
docker-compose -f docker-compose_local.yml up
- Create
./server/.env.localfor the OPENAI API
touch ./server/.env.local
export OPENAI_API_KEY=DONTSHAREWITHOTHERS
- Run frontend at port
3000:
cd frontend
npm install
npm run start
- Run server at port
5001:
cd server
pip install -r requirements.txt
python app.py