Changed default port to 3010

This commit is contained in:
2025-02-16 22:42:21 +11:00
parent 5014052973
commit 8ca99bca67

View File

@@ -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"])