-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from dmbtechdev/master
X-Bot from Baris@dmbtechdev
- Loading branch information
Showing
17 changed files
with
4,076 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.