From fd08466c8c657d07589b6715912924f3c3964661 Mon Sep 17 00:00:00 2001 From: Leon van Zyl Date: Wed, 13 Aug 2025 13:20:42 +0200 Subject: [PATCH] fix env file --- env.example | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/env.example b/env.example index 7195d3d..afe76d0 100644 --- a/env.example +++ b/env.example @@ -1,17 +1,15 @@ -# Rename this file to .env - # Database -DATABASE_URL="postgresql://username:password@localhost:5432/your_database_name" +DATABASE_URL= # Authentication - Better Auth -BETTER_AUTH_SECRET="your-random-32-character-secret-key-here" +BETTER_AUTH_SECRET="yourauthsecretgoeshere" # Google OAuth (Get from Google Cloud Console) -GOOGLE_CLIENT_ID="your-google-client-id" -GOOGLE_CLIENT_SECRET="your-google-client-secret" +GOOGLE_CLIENT_ID= +GOOGLE_CLIENT_SECRET= # AI Integration (Optional - for chat functionality) -OPENAI_API_KEY="sk-your-openai-api-key-here" +OPENAI_API_KEY= # App URL (for production deployments) NEXT_PUBLIC_APP_URL="http://localhost:3000" \ No newline at end of file