From 031ee963b04438e5060484659470a46db9d93b3a Mon Sep 17 00:00:00 2001 From: Satya Patel Date: Fri, 12 Dec 2025 19:50:01 -0500 Subject: [PATCH] docs: update .env.example with all required variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add all environment variables needed for local development including database, Neon, Clerk auth, app URLs, and Vercel Blob storage configs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .env.example | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 8c0c43958f3..279dd6e245b 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,28 @@ +# Database DATABASE_URL=postgresql://postgres:postgres@localhost:5432/superset -VITE_DEV_SERVER_PORT=4927 -WEBSITE_URL=http://localhost:3001 +DATABASE_URL_UNPOOLED=postgresql://postgres:postgres@localhost:5432/superset -# Neon MCP Server API key (for Claude Code integration) +# Neon (for database branching) NEON_API_KEY=your_neon_api_key_here +NEON_ORG_ID=your_neon_org_id_here +NEON_PROJECT_ID=your_neon_project_id_here +NEON_BRANCH_ID=your_neon_branch_id_here + +# Clerk Authentication +CLERK_SECRET_KEY=your_clerk_secret_key_here +CLERK_WEBHOOK_SECRET=your_clerk_webhook_secret_here +NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=your_clerk_publishable_key_here + +# App URLs +NEXT_PUBLIC_WEB_URL=http://localhost:3000 +NEXT_PUBLIC_API_URL=http://localhost:3001 +NEXT_PUBLIC_ADMIN_URL=http://localhost:3002 +NEXT_PUBLIC_MARKETING_URL=http://localhost:3003 +NEXT_PUBLIC_DOCS_URL=http://localhost:3004 +NEXT_PUBLIC_COOKIE_DOMAIN=localhost + +# Vercel Blob Storage +BLOB_READ_WRITE_TOKEN=your_blob_token_here + +# Desktop App +VITE_DEV_SERVER_PORT=4927