Skip to content

Commit 473a0b6

Browse files
author
Admin
committed
Add .env.example with recommended env vars (OAuth, session, Redis, feature flags)\n\nDo NOT commit real secrets; use GitHub Secrets or a vault.
1 parent 42abc66 commit 473a0b6

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.env.example

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Example environment variables (DO NOT store real secrets in repo)
2+
# OAuth (Google)
3+
GOOGLE_CLIENT_ID=your-google-client-id
4+
GOOGLE_CLIENT_SECRET=your-google-client-secret
5+
6+
# OAuth (GitHub)
7+
GITHUB_CLIENT_ID=your-github-client-id
8+
GITHUB_CLIENT_SECRET=your-github-client-secret
9+
10+
# Session secret
11+
SESSION_SECRET=super-secret-session-key
12+
13+
# Redis
14+
REDIS_URL=redis://localhost:6379
15+
16+
# Feature flags
17+
COPILOT_PLAN_FALLBACK=0
18+
19+
# Notes: keep real values in environment or secret manager (GitHub Secrets, Vault, etc.)

0 commit comments

Comments
 (0)