From 35837c331bd9b43d6092b6480ec490675a05fc13 Mon Sep 17 00:00:00 2001 From: Kevin Lan Date: Fri, 4 Apr 2025 15:40:10 -0400 Subject: [PATCH] Update env var setup in readme --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 59b88506..3d9b022c 100644 --- a/README.md +++ b/README.md @@ -53,9 +53,13 @@ DATABASE_KEY=[Insert Supabase Project API key] OPENAI_API_KEY=[Insert OpenAI API Key] PINECONE_API_KEY=[Insert Pinecone API Key] PINECONE_INDEX_NAME="course-matrix" + +BREVO_API_KEY=[Insert Brevo API Key] +SENDER_EMAIL="kevinlan416@gmail.com" +SENDER_NAME="Course Matrix Notifications" ``` -The `DATABASE_URL` variable should contain your Supabase project url and the `DATABASE_KEY` should contain your Supabase project’s API key. To learn how to create a new Supabase project: see [here](https://medium.com/@heshramsis/building-a-crud-app-with-supabase-and-express-a-step-by-step-guide-for-junior-developers-81456b850910). Likewise, the `OPENAI_API_KEY` variable should contain your OpenAI Project API Key and the `PINECONE_API_KEY` should contain your Pinecone Project API Key. Note that for the purposes of this project, **we will provide the grader with all necessary API keys and URLs**. +The `DATABASE_URL` variable should contain your Supabase project url and the `DATABASE_KEY` should contain your Supabase project’s API key. To learn how to create a new Supabase project: see [here](https://medium.com/@heshramsis/building-a-crud-app-with-supabase-and-express-a-step-by-step-guide-for-junior-developers-81456b850910). Likewise, the `OPENAI_API_KEY` variable should contain your OpenAI Project API Key, the `PINECONE_API_KEY` should contain your Pinecone Project API Key, and the `BREVO_API_KEY` should contain your Brevo API Key. Note that for the purposes of this project, **we will provide the grader with all necessary API keys and URLs**. 4. Configure environment variables for frontend. Create a `.env` file in `/frontend` and populate it with the following: