This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.env.example
More file actions
53 lines (42 loc) · 1.51 KB
/
Copy path.env.example
File metadata and controls
53 lines (42 loc) · 1.51 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
49
50
51
52
53
# AgentOS Copilot Extension - Environment Configuration
# Copy this file to .env and fill in your values
# ===========================================
# GitHub App Configuration (REQUIRED)
# ===========================================
# Get these from: GitHub → Settings → Developer settings → GitHub Apps → Your App
GITHUB_APP_ID=
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
GITHUB_WEBHOOK_SECRET=
# Private key - paste the entire key including BEGIN/END lines
# Or set GITHUB_PRIVATE_KEY_PATH to point to a .pem file
GITHUB_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
...your key here...
-----END RSA PRIVATE KEY-----"
# Alternative: path to private key file
# GITHUB_PRIVATE_KEY_PATH=/path/to/private-key.pem
# ===========================================
# Server Configuration
# ===========================================
PORT=3000
NODE_ENV=production
LOG_LEVEL=info
# Your deployed server URL (used for OAuth callbacks)
# Example: https://agentos-copilot.vercel.app
SERVER_URL=
# ===========================================
# Optional: Telemetry & Monitoring
# ===========================================
# Azure Application Insights
# APPLICATIONINSIGHTS_CONNECTION_STRING=
# Sentry error tracking
# SENTRY_DSN=
# ===========================================
# Optional: Feature Flags
# ===========================================
# Enable CMVK multi-model review (requires API keys)
ENABLE_CMVK=false
# OpenAI API key (for CMVK GPT-4 reviews)
# OPENAI_API_KEY=
# Anthropic API key (for CMVK Claude reviews)
# ANTHROPIC_API_KEY=