Cosmos-Server/.gupm_rc.gs
Yann Stepienik d1e6c60ebe Fix CI
2023-03-10 22:05:29 +00:00

12 lines
389 B
JavaScript

// look up dependencies in local go_modules and gupm_modules directories
env("GOPATH", run("go", ["env", "GOROOT"]) + ":" + pwd() + "/go_modules" + ":" + pwd() + "/gupm_modules")
env("GO111MODULE", "off")
env("LOG_LEVEL", "DEBUG")
env("HTTP_PORT", 8080)
env("HTTPS_PORT", 8443)
env("EZ", "UTC")
// dev mode
if(fileExists("./config_dev.json")) {
env("CONFIG_FILE", "./config_dev.json")
}