-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (20 loc) · 778 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (20 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Database (Neon PostgreSQL)
DATABASE_URL="postgresql://user:password@host.neon.tech/flowforge?sslmode=require"
# Redis (Upstash)
REDIS_URL="rediss://default:password@host.upstash.io:6379"
# NextAuth
NEXTAUTH_URL="https://your-app.vercel.app"
NEXTAUTH_SECRET="generate-with-openssl-rand-base64-32"
# GitHub OAuth App
GITHUB_CLIENT_ID="your-github-oauth-client-id"
GITHUB_CLIENT_SECRET="your-github-oauth-client-secret"
# GitHub Webhook
GITHUB_WEBHOOK_SECRET="your-webhook-secret"
# Encryption key for storing tokens (32 bytes hex)
ENCRYPTION_KEY="generate-64-char-hex-string"
# AI Providers (optional - users can add their own)
OPENAI_API_KEY="sk-..."
ANTHROPIC_API_KEY="sk-ant-..."
# Email (Resend - optional)
RESEND_API_KEY="re_..."
FROM_EMAIL="noreply@yourdomain.com"