-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
32 lines (28 loc) · 982 Bytes
/
.env.example
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
# PostgreSQL Database Configuration
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_NAME=github_agent
DATABASE_SUPERUSER=postgres
DATABASE_SUPERUSER_PASSWORD=postgres
DATABASE_USER=postgres
DATABASE_PASSWORD=postgres
# Optional: Use a connection string instead of individual parameters
# DATABASE_URL=postgres://postgres:postgres@localhost:5432/github_agent
# DATABASE_SSL=false
# Agent Configuration
AGENT_DATABASE_USER=agent_user
AGENT_DATABASE_PASSWORD=agent_password
AGENT_DATABASE_SCHEMA=agent_schema
# Discord Bot Configuration
DISCORD_BOT_ID=your_discord_bot_id
DISCORD_BOT_TOKEN=your_discord_bot_token
YOUR_DISCORD_ID=your_discord_id
AGENT_STREAM_URL=your_agent_stream_url
# GitHub Configuration
GITHUB_TOKEN=your_github_token
GITHUB_OWNER=your_github_username_or_org
GITHUB_REPO=your_repository_name
# Discord Bot PR Notification Configuration
ENABLE_PR_NOTIFICATIONS=true
DISCORD_NOTIFICATION_CHANNEL_ID=your_discord_channel_id
AGENT_API_URL=http://localhost:3000