26 lines
596 B
Bash
26 lines
596 B
Bash
# Nomad connection settings
|
|
NOMAD_ADDR=http://pjmldk01.ds.meisheng.group:4646
|
|
NOMAD_TOKEN=
|
|
NOMAD_SKIP_VERIFY=true
|
|
NOMAD_NAMESPACE=development
|
|
|
|
# Gitea API configuration
|
|
GITEA_API_URL=https://gitea.dev.meisheng.group/api/v1
|
|
GITEA_API_TOKEN=a2de6c0014e6d0108edb94fb7d524777bb75d33a
|
|
# Alternative authentication (uncomment if needed)
|
|
# GITEA_USERNAME=your-gitea-username
|
|
# GITEA_PASSWORD=your-gitea-password
|
|
GITEA_VERIFY_SSL=false
|
|
|
|
# API settings
|
|
PORT=8000
|
|
HOST=0.0.0.0
|
|
|
|
# Configuration directory
|
|
CONFIG_DIR=./configs
|
|
|
|
# Logging level
|
|
LOG_LEVEL=INFO
|
|
|
|
# Enable to make development easier
|
|
RELOAD=true |