Skip to content
Open
Show file tree
Hide file tree
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
21 changes: 19 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,26 @@ E2B_API_KEY=your-e2b-api-key-here
# ==========================================
# Port for the Genesis Web UI
GENESIS_WEBUI_PORT=8000
# Public URL of the app (used for Stripe redirect URLs)
APP_URL=http://localhost:5173

# ==========================================
# Authentication (Clerk)
# ==========================================
# Get these from https://dashboard.clerk.com
VITE_CLERK_PUBLISHABLE_KEY=pk_test_your-clerk-publishable-key
CLERK_SECRET_KEY=sk_test_your-clerk-secret-key

# ==========================================
# Billing (Stripe)
# ==========================================
# Get these from https://dashboard.stripe.com
STRIPE_SECRET_KEY=sk_test_your-stripe-secret-key
STRIPE_WEBHOOK_SECRET=whsec_your-stripe-webhook-secret
STRIPE_PRICE_ID=price_your-stripe-price-id

# ==========================================
# Advanced Database Configuration (Optional)
# ==========================================
# Full database URL (alternative to individual postgres settings)
# DATABASE_URL=postgresql://genesis:password@postgres:5432/genesis
# Full database URL (used for user/subscription storage and as alternative to individual postgres settings)
DATABASE_URL=postgresql://genesis:changeme_secure_password@localhost:5432/genesis
Loading