From 8ca99bca675ef6b588d429e425e9f3e54c37dd7f Mon Sep 17 00:00:00 2001 From: Haelnorr Date: Sun, 16 Feb 2025 22:42:21 +1100 Subject: [PATCH] Changed default port to 3010 --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index da62d0d..25654d6 100644 --- a/config/config.go +++ b/config/config.go @@ -53,7 +53,7 @@ func GetConfig(args map[string]string) (*Config, error) { if args["port"] != "" { port = args["port"] } else { - port = GetEnvDefault("PORT", "3333") + port = GetEnvDefault("PORT", "3010") } if args["loglevel"] != "" { logLevel = logging.GetLogLevel(args["loglevel"])