-
Download the
data.zip
and unzip it to./data
-
Create
./.env
for 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.local
for 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