-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
32 lines (25 loc) · 820 Bytes
/
.env.example
File metadata and controls
32 lines (25 loc) · 820 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
25
26
27
28
29
30
31
# GitHub OAuth Credentials
GITHUB_CLIENT_ID=your_github_client_id
GITHUB_CLIENT_SECRET=your_github_client_secret
# OAuth Redirect URL (must match GitHub app settings)
OAUTH_REDIRECT_URL=http://localhost:8000/auth/callback
# OpenAI API Key (for AI issue generation)
OPENAI_API_KEY=your_openai_api_key
# Agent Provider Settings (for code_feature tool)
DEFAULT_AGENT_PROVIDER=cursor
AGENT_CALLBACK_URL=
# Cursor Agent API
CURSOR_AGENT_API_URL=https://api.cursor.com
CURSOR_AGENT_API_KEY=
CURSOR_AGENT_API_ENDPOINT=/v0/agents
CURSOR_AGENT_API_AUTH_HEADER=Authorization
CURSOR_AGENT_API_AUTH_PREFIX=Bearer
# Devin API (v1)
DEVIN_API_URL=https://api.devin.ai/v1
DEVIN_API_KEY=
DEVIN_API_ENDPOINT=/sessions
DEVIN_API_AUTH_HEADER=Authorization
DEVIN_API_AUTH_PREFIX=Bearer
# App Settings
APP_HOST=0.0.0.0
APP_PORT=8000