-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
24 lines (19 loc) · 928 Bytes
/
env.example
File metadata and controls
24 lines (19 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# OpenAI API Configuration
OPENAI_API_KEY=your_openai_api_key_here
# Server Configuration
PORT=3000
NODE_ENV=development
# Security Configuration
AUTO_TEST_WEBHOOK_SECRET=your_api_key_secret_here
# GitHub App Configuration
GITHUB_APP_ID=your_github_app_id_here
GITHUB_PRIVATE_KEY=your_github_private_key_here
GITHUB_WEBHOOK_SECRET=your_webhook_secret_here
# Bot Configuration (optional - defaults to 'auto-tests-bot')
# BOT_SIGNATURE=auto-tests-bot
# Branch Processing Configuration (optional - defaults to '*' for all branches)
# Examples:
# PROCESS_BRANCHES=* # Process all branches
# PROCESS_BRANCHES=main,master,develop # Process specific branches
# PROCESS_BRANCHES=main,feature/*,hotfix/* # Process main + feature branches + hotfix branches
# PROCESS_BRANCHES=main,develop,feature/*,bugfix/* # Process main, develop, and all feature/bugfix branches