implemented NATS event bus, websocket hub upgrade, and audit log

This commit is contained in:
2026-05-11 19:38:02 +02:00
parent db0f402ab2
commit 83d96d0a1e
16 changed files with 502 additions and 15 deletions
+4
View File
@@ -25,6 +25,9 @@ type Config struct {
OIDCClientID string
OIDCClientSecret string
// Event bus
NATSUrl string
// Federation
InstanceURL string
InstanceName string
@@ -39,6 +42,7 @@ func Load() (*Config, error) {
RepoRoot: getEnv("REPO_ROOT", "/var/lib/forgebucket/repos"),
Debug: getEnvBool("DEBUG", false),
NATSUrl: getEnv("NATS_URL", ""),
InstanceURL: getEnv("INSTANCE_URL", ""),
InstanceName: getEnv("INSTANCE_NAME", "ForgeBucket"),
}