Funktionsrollback
release-tag / release-image (push) Failing after 1m8s

This commit is contained in:
2026-07-24 07:17:38 +02:00
parent a4ff984914
commit e9d9583f28
38 changed files with 3243 additions and 364 deletions
+6
View File
@@ -29,6 +29,9 @@ type Config struct {
UIQueryLimit int
UIUsername string
UIPassword string
RulesDir string
GrafanaPort string
GrafanaPublicURL string
}
func Load() Config {
@@ -54,6 +57,9 @@ func Load() Config {
UIQueryLimit: envInt("UI_QUERY_LIMIT", 500),
UIUsername: env("UI_USERNAME", "admin"),
UIPassword: env("UI_PASSWORD", "change-me"),
RulesDir: env("RULES_DIR", "/app/rules"),
GrafanaPort: env("GRAFANA_PORT", "3000"),
GrafanaPublicURL: env("GRAFANA_PUBLIC_URL", ""),
}
}