-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 868 Bytes
/
Copy path.env.example
File metadata and controls
22 lines (18 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Keep all real secrets server-side. Never commit them.
OPENAI_API_KEY=
OPENAI_MODEL=gpt-5
OPENAI_ORCHESTRATOR_MODEL=gpt-5
# GitHub Portfolio Scan works without a token for public repositories.
GITHUB_USERNAME=mikelninh
# Optional private portfolio access.
# Use a separate fine-grained GitHub token with access to the repositories you
# want Council to inspect and ONLY read permissions: Metadata + Contents.
# Council uses Contents read to inspect README files; it does not need write.
# On Vercel Hobby, prefer setting this for Preview only and enable Vercel
# Authentication / Standard Deployment Protection before adding private access.
GITHUB_TOKEN=
# Optional future Vercel management adapter. Council can still detect that it
# is running on Vercel without this token, but cannot inspect deployments.
VERCEL_TOKEN=
COUNCIL_REPO=mikelninh/council
PORT=3030