16 lines
710 B
Plaintext
16 lines
710 B
Plaintext
DATABASE_URL="postgresql://user:password@localhost:5432/proj_dash?schema=public"
|
|
JWT_SECRET="your-jwt-secret-here-use-openssl-rand-base64-32"
|
|
|
|
# GitHub App Configuration (modern approach with fine-grained permissions)
|
|
# See GITHUB_APP_SETUP.md for detailed setup instructions
|
|
GITHUB_APP_ID="your-github-app-id"
|
|
GITHUB_APP_CLIENT_ID="your-github-app-client-id"
|
|
GITHUB_APP_CLIENT_SECRET="your-github-app-client-secret"
|
|
|
|
# Optional: For App-level authentication (not required for user auth)
|
|
# GITHUB_APP_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\n...\n-----END RSA PRIVATE KEY-----"
|
|
|
|
FRONTEND_URL="http://localhost:5173"
|
|
UPSTASH_REDIS_URL="http://localhost:6379"
|
|
UPSTASH_REDIS_TOKEN="your-upstash-redis-token"
|