Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 630 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 630 Bytes

How to Run

  1. Create and connect to a local MySQL database.

  2. Create a .env file with the following contents:

DB_HOST=localhost
DB_USER=root
DB_PASSWORD="{your password}"
DB_NAME="{your db name}"
OPENAI_API_KEY="{your openai api key}"

Make sure "gpt-4o-mini" and "text-embedding-3-small" is in the allowed models list in your openAI project settings: alt text

  1. Start the backend:
npm start
  1. Start the frontend:
npm start

Next Steps

  • Create unit tests
  • Create a login system with Auth0