diff --git a/apps/backend/config/config.go b/apps/backend/config/config.go index 5f6015b..559a58b 100644 --- a/apps/backend/config/config.go +++ b/apps/backend/config/config.go @@ -74,10 +74,6 @@ func Load() *Config { // Server config Cfg.Server.Port = getEnvAsInt("PORT", 1323) - if os.Getenv("ASPNETCORE_PORT") != "" { - Cfg.Server.Port = getEnvAsInt("ASPNETCORE_PORT", 1323) - } - // Validate required config if Cfg.Database.Password == "" { fmt.Printf("required environment variable POSTGRES_PASSWORD not set\n")