- Added package.json for project dependencies and scripts. - Created redis.ts for Redis connection configuration. - Set up tsconfig.json for TypeScript compilation settings. - Implemented worker.ts to handle GitHub repository deployments using BullMQ and Octokit.
13 lines
398 B
Plaintext
13 lines
398 B
Plaintext
# ------------------------------
|
|
# Redis Configuration
|
|
# ------------------------------
|
|
REDIS_URL=redis://username:your_password@HOST:PORT
|
|
|
|
# ------------------------------
|
|
# GitHub Configuration
|
|
# ------------------------------
|
|
# Scopes required: 'repo' (to create repos and push code)
|
|
GITHUB_TOKEN=ghp_xxxxxx
|
|
|
|
# The GitHub username associated with the token above
|
|
GITHUB_USERNAME=github_username |