|
@@ -2,7 +2,6 @@ package main
|
|
|
|
|
|
import (
|
|
|
"cicv-data-closedloop/common/config/c_log"
|
|
|
- "cicv-data-closedloop/common/config/c_nacos"
|
|
|
"cicv-data-closedloop/common/handler/h_validate_request_header"
|
|
|
"cicv-data-closedloop/common/util"
|
|
|
"cicv-data-closedloop/tools/plugin-compile/package/config"
|
|
@@ -15,14 +14,14 @@ const servicePort = 12340
|
|
|
const serviceName = "plugin-compile"
|
|
|
|
|
|
func init() {
|
|
|
- c_log.InitLog("./log/", serviceName)
|
|
|
+ c_log.InitLog("/root/cicv-data-closedloop/deploy/log/", serviceName)
|
|
|
config.InitOss(false)
|
|
|
config.InitOss2(false)
|
|
|
- c_nacos.InitService(true, serviceName, servicePort, map[string]string{
|
|
|
- "开发者": "孟令鑫",
|
|
|
- "内网IP": "10.14.85.228",
|
|
|
- "外网IP": "36.110.106.142",
|
|
|
- })
|
|
|
+ //c_nacos.InitService(true, serviceName, servicePort, map[string]string{
|
|
|
+ // "开发者": "孟令鑫",
|
|
|
+ // "内网IP": "10.14.85.228",
|
|
|
+ // "外网IP": "36.110.106.142",
|
|
|
+ //})
|
|
|
}
|
|
|
|
|
|
func main() {
|