-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
35 lines (28 loc) · 1.02 KB
/
env.example
File metadata and controls
35 lines (28 loc) · 1.02 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
# OpenAI Configuration
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_MODEL=gpt-4-turbo-preview
# GitHub Configuration
GITHUB_TOKEN=your_github_personal_access_token_here
GITHUB_API_URL=https://api.github.com
# MCP Server Configuration
MCP_SERVER_URL=https://mcp-server-github.fly.dev
MCP_SERVER_TOKEN=your_github_personal_access_token_here
# Repository Configuration
REPO_OWNER=your_github_username_or_org
REPO_NAME=your_repository_name
# Multi-repository Configuration (JSON format)
# Example: [{"owner": "your_org", "name": "repo1", "display_name": "Repo 1"}, {"owner": "your_org", "name": "repo2", "display_name": "Repo 2"}]
REPOSITORIES=[{"owner": "your_org", "name": "repo1"}, {"owner": "your_org", "name": "repo2"}]
ENABLE_COMPARATIVE_ANALYSIS=true
# Analysis Configuration
ANALYSIS_YEAR=2025
ANALYSIS_START_DATE=2025-01-01
ANALYSIS_END_DATE=2025-12-31
# Output Configuration
OUTPUT_DIR=./reports
DATA_DIR=./data
LOG_LEVEL=INFO
# Agent Configuration
AGENT_NAME=github_pr_analyzer
MAX_CONCURRENT_REQUESTS=10
REQUEST_TIMEOUT=30