add new enviroment variables and remove cli flags

This commit is contained in:
Adrian Zürcher
2025-11-12 16:07:10 +01:00
parent 7d4d2e4c54
commit 14d2270260
6 changed files with 36 additions and 24 deletions

7
backend/env/env.go vendored
View File

@@ -17,12 +17,15 @@ const (
PrivKey EnvKey = "PRIVKEY"
Fullchain EnvKey = "FULLCHAIN"
Https EnvKey = "HTTPS"
Url EnvKey = "URL"
Port EnvKey = "PORT"
HostUrl EnvKey = "HOST_URL"
HostPort EnvKey = "HOST_PORT"
WorkingDir EnvKey = "WORKING_DIR"
Spa EnvKey = "SPA"
AccessSecret EnvKey = "ACCESS_SECRET"
RefreshSecret EnvKey = "REFRESH_SECRET"
Organization EnvKey = "ORGANIZATION"
DOMAIN EnvKey = "DOMAIN"
AllowOrigin EnvKey = "ALLOWORIGIN"
)
const (