Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -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