-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
24 lines (20 loc) · 1.01 KB
/
.env.example
File metadata and controls
24 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Database
DATABASE_URL="postgresql://postgres:postgres@127.0.0.1:54322/postgres"
# GitHub App Integration
# For local dev, you can often use a raw PEM string for the private key.
# For server environments (Vercel, Docker), provide the key as a Base64-encoded string - see README for details.
# The app will handle decoding automatically.
NEXT_PUBLIC_GITHUB_APP_ID="123456"
GITHUB_APP_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\nYOUR_PRIVATE_KEY_HERE\n-----END RSA PRIVATE KEY-----"
GITHUB_APP_WEBHOOK_SECRET="your-github-app-webhook-secret-here"
GITHUB_APP_CLIENT_ID="Iv1.your-client-id-here"
GITHUB_APP_CLIENT_SECRET="your-client-secret-here"
GITHUB_APP_CALLBACK_URL="http://localhost:3000/api/auth/callback/github"
NEXT_PUBLIC_GITHUB_APP_NAME="jules-task-queue"
# Cron job verification token (for Firebase you also need to add this in ./functions/.env as well)
CRON_SECRET="1234567890"
# Token Encryption
TOKEN_ENCRYPTION_KEY="your_32_character_long_encryption_key_here"
# Development
NODE_ENV="development"
__NEXT_TEST_MODE="1"