-
Notifications
You must be signed in to change notification settings - Fork 10
/
.env.example
36 lines (29 loc) · 958 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
33
34
35
36
# Environment Configuration
ENVIRONMENT=development # or production
# Server Configuration
SERVER_HOST=127.0.0.1
SERVER_PORT=7878
WEBHOOK_PATH=/webhook
# Rate Limiting Configuration
RATE_LIMIT_MAX_REQUESTS=100
RATE_LIMIT_WINDOW_SECONDS=3600
# Retry Configuration
RETRY_MAX_ATTEMPTS=3
RETRY_INITIAL_DELAY_MS=1000
RETRY_MAX_DELAY_MS=5000
# Timeout Configuration (in seconds)
TIMEOUT_CONNECT_SECONDS=10
TIMEOUT_READ_SECONDS=30
TIMEOUT_WRITE_SECONDS=30
# GitHub Configuration
GITHUB_TOKEN=ghp_your_github_personal_access_token_here
REPO_OWNER=repository_owner_or_organization
REPO_NAME=repository_name
# X (Twitter) Configuration
# Get these from the X Developer Portal (https://developer.twitter.com/en/portal/dashboard)
X_API_KEY=your_x_api_key_here
X_API_SECRET=your_x_api_secret_here
X_ACCESS_TOKEN=your_x_access_token_here
X_ACCESS_SECRET=your_x_access_token_secret_here
# Logging Configuration
LOG_LEVEL=debug # error, warn, info, debug, or trace