27 lines
825 B
Plaintext
27 lines
825 B
Plaintext
# Config for: Environment variables template
|
|
# Applied by: Copy to .env and fill in values; sourced by shell scripts
|
|
|
|
# Porkbun API credentials
|
|
PORKBUN_API_KEY=pk1_your_key_here
|
|
PORKBUN_SECRET_KEY=sk1_your_key_here
|
|
|
|
# K3s node token for agent join
|
|
K3S_NODE_TOKEN=your_token_here
|
|
|
|
# Gitea runner token for CI/CD
|
|
GITEA_RUNNER_TOKEN=your_token_here
|
|
|
|
# Grafana admin password
|
|
GRAFANA_ADMIN_PASSWORD=your_password_here
|
|
|
|
# Authentik secrets
|
|
AUTHENTIK_PROXY_TOKEN=your_token_here
|
|
AUTHENTIK_GITEA_CLIENT_ID=your_client_id_here
|
|
AUTHENTIK_GITEA_CLIENT_SECRET=your_client_secret_here
|
|
AUTHENTIK_GRAFANA_CLIENT_ID=your_client_id_here
|
|
AUTHENTIK_GRAFANA_CLIENT_SECRET=your_client_secret_here
|
|
|
|
# Gitea container registry credentials
|
|
REGISTRY_SERVER=your_registry_server_here
|
|
REGISTRY_USER=your_username_here
|
|
REGISTRY_PASSWORD=your_token_here |