Hack the 6ix 2023 Project
python -m venv venv
to create a virtual environment
venv/scripts/activate
to activate it
cd backend
pip install -r requirements.txt
to install requirements
Add a .env
file and add the COHERE_API_KEY
Run flask --app server.py run
to start the backend server
cd frontend
npm install
to install dependencies
npm start
to start the frontend server