From 4970337b3485f722da6eb675df866dd896c5f435 Mon Sep 17 00:00:00 2001 From: starmorph Date: Fri, 23 May 2025 14:32:17 -0700 Subject: [PATCH] update env.example --- .env.example | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.env.example b/.env.example index a38138d..7920a6b 100644 --- a/.env.example +++ b/.env.example @@ -1,9 +1,17 @@ # LangGraph Configuration NEXT_PUBLIC_API_URL=http://localhost:2024 NEXT_PUBLIC_ASSISTANT_ID=agent + + #fullstack-chat-client + NEXT_PUBLIC_BASE_URL=http://localhost:3000 + # Do NOT prefix this with "NEXT_PUBLIC_" as we do not want this exposed in the client. LANGSMITH_API_KEY= +# Disable showing Google Auth in the UI +NEXT_PUBLIC_GOOGLE_AUTH_DISABLED="true" + + # Production LangGraph Configuration (quickstart) - Uncomment to use # NEXT_PUBLIC_ASSISTANT_ID="agent" # This should be the deployment URL of your LangGraph server @@ -11,3 +19,16 @@ LANGSMITH_API_KEY= # This should be the URL of your website + "/api". This is how you connect to the API proxy # NEXT_PUBLIC_API_URL="https://my-website.com/api" # LANGSMITH_API_KEY="lsv2_..." + + +# Supabase Authentication - Need all 3, anon key for client side, service role for api routes +NEXT_PUBLIC_SUPABASE_ANON_KEY= +NEXT_PUBLIC_SUPABASE_URL= +SUPABASE_SERVICE_ROLE_KEY= + +## Stripe API +STRIPE_SECRET_KEY= +NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY= +# Local Stripe CLI testing +STRIPE_WEBHOOK_SECRET= +