- Replaced nodemon with tsx for development script in package.json - Updated devDependencies to include tsx and removed nodemon - Reformatted code in worker.ts for better readability - Improved handling of API calls and logging in worker.ts
15 lines
441 B
Plaintext
15 lines
441 B
Plaintext
# ------------------------------
|
|
# Redis Configuration
|
|
# ------------------------------
|
|
REDIS_URL=redis://username:your_password@HOST:PORT
|
|
|
|
# ------------------------------
|
|
# Gitea Configuration
|
|
# ------------------------------
|
|
GITEA_API_URL=https://git.mworld.cloud/api/v1
|
|
|
|
# Scopes required: 'repo' (to create repos and push code)
|
|
GITEA_TOKEN=gitea_token
|
|
|
|
# The Gitea username associated with the token above
|
|
GITEA_USERNAME=gitea_username |