config: prod and staging

This commit is contained in:
Efril
2026-07-09 22:11:03 +07:00
parent bfce4b865b
commit 1533914e4d
6 changed files with 147 additions and 23 deletions
+2 -1
View File
@@ -12,13 +12,14 @@ import (
const (
YAML_PATH = "infra/%s"
ENV_MODE = "ENV_MODE"
DEFAULT_ENV_MODE = "development"
DEFAULT_ENV_MODE = "staging"
)
var (
validEnvMode = map[string]struct{}{
"local": {},
"development": {},
"staging": {},
"production": {},
}
)