@@ -55,6 +55,8 @@ func main() {
debug := utils.GetEnvInfo("DEBUG")
if debug == "uat" {
port = 6060
+ } else if debug == "qa" || debug == "mbp" {
+ port = 6060
}
app.Listen(fmt.Sprintf(":%d", port))