-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
48 lines (40 loc) · 1.99 KB
/
.env.example
File metadata and controls
48 lines (40 loc) · 1.99 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Junior — Environment Configuration
# Copy to .env and fill in your values: cp .env.example .env
# AI Provider (auto-detected from API key, or set explicitly)
# MODEL_PROVIDER=openai # openai | anthropic
# MODEL_NAME=gpt-5.4-mini # default: gpt-5.4-mini (openai) or claude-opus-4-6 (anthropic)
# AI Keys (set the one matching your provider)
OPENAI_API_KEY=sk-...
# ANTHROPIC_API_KEY=sk-ant-...
# Platform Token — determines platform automatically (set only one)
# GITLAB_TOKEN=glpat-...
# GITHUB_TOKEN=ghp_...
# Agent backend
AGENT_BACKEND=pydantic # pydantic (default) | claudecode | codex | deepagents
# Review tuning
PROMPTS=security,logic,design # available: security, logic, design, docs, common
# PROMPTS_DIR= # extra directory with custom .md prompt files
# SOURCE=auto # auto | staged | commit | branch
# MAX_CONCURRENT_AGENTS=3 # limit parallel sub-agents (rate limit protection)
# Output (local only — writes to file instead of stdout)
# PUBLISH_OUTPUT=review.md
# ---------------------------------------------------------------------------
# GitLab CI variables — auto-populated in CI pipelines.
# Set manually here only for local testing against a specific MR.
# ---------------------------------------------------------------------------
# CI_PROJECT_DIR=.
# CI_PROJECT_ID=12345
# CI_MERGE_REQUEST_IID=42
# CI_MERGE_REQUEST_TITLE=feat: my feature
# CI_MERGE_REQUEST_DESCRIPTION=
# CI_MERGE_REQUEST_SOURCE_BRANCH_NAME=feature/my-branch
# CI_MERGE_REQUEST_TARGET_BRANCH_NAME=main
# CI_MERGE_REQUEST_DIFF_BASE_SHA=abc123
# CI_COMMIT_SHA=def456
# CI_SERVER_URL=https://gitlab.com
# ---------------------------------------------------------------------------
# GitHub Actions variables — auto-populated in CI pipelines.
# Set manually here only for local testing against a specific PR.
# ---------------------------------------------------------------------------
# GITHUB_REPOSITORY=owner/repo
# GITHUB_EVENT_NUMBER=123