-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
18 lines (15 loc) · 725 Bytes
/
env.example
File metadata and controls
18 lines (15 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Clerk (reuse same app across all projects for shared auth)
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_...
CLERK_SECRET_KEY=sk_test_...
CLERK_ISSUER_URL=https://your-clerk-subdomain.clerk.accounts.dev
CLERK_WEBHOOK_SIGNING_SECRET=whsec_...
# Neon Postgres (create new project per app via: neonctl projects create)
DATABASE_URL=postgresql://user:pass@ep-xxx.us-east-2.aws.neon.tech/neondb?sslmode=require
# Convex (auto-filled by: npx convex dev)
CONVEX_DEPLOYMENT=dev:your-deployment-name
NEXT_PUBLIC_CONVEX_URL=https://your-deployment.convex.cloud
CONVEX_PLAYGROUND_API_KEY=
CONVEX_PLAYGROUND_USER_ID=dev-cli
# AI Providers (add whichever you use in convex/agents.ts)
OPENAI_API_KEY=sk-...
# ANTHROPIC_API_KEY=sk-ant-...