-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
18 lines (14 loc) · 868 Bytes
/
.env.example
File metadata and controls
18 lines (14 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Model Configuration
MODEL=openai:gpt-5-mini
API_KEY=your_api_key_here
# GitHub Configuration
GITHUB_PAT=your_github_personal_access_token
GITHUB_REPOSITORY=owner/repository-name
# Documentation for issue grounding (optional)
DOCS_URL=https://example.com/llms-full.txt
# Issue Templates (URLs preferred)
TEMPLATE_BUG_URL="https://raw.githubusercontent.com/user/repo/main/.github/ISSUE_TEMPLATE/bug_report.md"
TEMPLATE_FEATURE_URL="https://raw.githubusercontent.com/user/repo/main/.github/ISSUE_TEMPLATE/feature_request.md"
# Alternative: Direct template content (not recommended for large templates)
# TEMPLATE_BUG="**Describe the bug**\nA clear description...\n\n**To Reproduce**\n1. Go to...\n2. Click on..."
# TEMPLATE_FEATURE="**Is your feature request related to a problem?**\nDescribe the problem...\n\n**Describe the solution**\nWhat you want to happen..."