From beb1db4a2ea31e38db8de8df2763fc08a5ded45c Mon Sep 17 00:00:00 2001 From: Rosario Moscato Date: Thu, 25 Sep 2025 11:05:48 +0200 Subject: [PATCH] chore: add example.env configuration file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added example.env file with environment variable template - Replaces the removed env.example file with updated format 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- example.env | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 example.env diff --git a/example.env b/example.env new file mode 100644 index 0000000..c84a1fb --- /dev/null +++ b/example.env @@ -0,0 +1,23 @@ +# Database +POSTGRES_URL=postgresql://dev_user:dev_password@localhost:5432/agentic_coding_dev + +# Authentication - Better Auth +# Generate key using https://www.better-auth.com/docs/installation +BETTER_AUTH_SECRET=qtD4Ssa0t5jY7ewALgai97sKhAtn7Ysc + +# Google OAuth (Get from Google Cloud Console) +GOOGLE_CLIENT_ID= +GOOGLE_CLIENT_SECRET= + +# AI Integration (Optional - for chat functionality) +OPENAI_API_KEY= +OPENAI_MODEL="gpt-5-mini" + +# Optional - for vector search only +OPENAI_EMBEDDING_MODEL="text-embedding-3-large" + +# App URL (for production deployments) +NEXT_PUBLIC_APP_URL="http://localhost:3000" + +# File storage (optional - if app required file uploads) +BLOB_READ_WRITE_TOKEN=