-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 1.69 KB
/
Copy path.env.example
File metadata and controls
38 lines (32 loc) · 1.69 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
# =============================================================
# DevFlow Kit — Local Environment Configuration
# Copy this file to .env and fill in your values:
# cp .env.example .env
# =============================================================
# ── Jira ─────────────────────────────────────────────────────
JIRA_BASE_URL=https://your-domain.atlassian.net
JIRA_USER_EMAIL=you@company.com
JIRA_API_TOKEN=
# ── GitHub ───────────────────────────────────────────────────
# Fine-grained PAT with: Contents (R/W), Issues (R/W), Pull Requests (R/W)
GH_PAT=github_pat_
# ── LLM Provider ─────────────────────────────────────────────
# Options: cli | anthropic | openai | google
# cli → uses Claude Code CLI (no API key needed, uses claude login)
# anthropic → calls Anthropic API directly (requires ANTHROPIC_API_KEY)
# openai → calls OpenAI API directly (requires OPENAI_API_KEY)
LLM_PROVIDER=cli
# Optional: override the default model for the chosen provider
# LLM_MODEL=claude-haiku-4-5-20251001
# API keys — only required when LLM_PROVIDER is set to the matching provider
ANTHROPIC_API_KEY=
OPENAI_API_KEY=
# ── Agent Inputs (for local testing) ─────────────────────────
ISSUE_KEY=PROJ-1
PROJECT_KEY=PROJ
COMPONENT=
SUMMARY=My test ticket summary
DESCRIPTION=Test description
TARGET_REPO=owner/repo
TARGET_BRANCH=main
EVENT_TYPE=devflow-refine