Ver Fonte

添加发布测试环境 sh

sixian há 2 anos atrás
pai
commit
cd1897c8cd
3 ficheiros alterados com 12 adições e 1 exclusões
  1. 1 1
      build.bat
  2. 2 0
      main.go
  3. 9 0
      push.sh

+ 1 - 1
build.bat

@@ -1,3 +1,3 @@
 set GOARCH=amd64
 set GOOS=linux
-go build -o build/iot_service ./
+go build -o build/iot_service ./

+ 2 - 0
main.go

@@ -52,6 +52,8 @@ func initDB() {
 	if os.Getenv("DEV_ENV") == "1" {
 		logCfg = gormLogger.Default
 	}
+	//logCfg = gormLogger.Default
+
 	db, err := gorm.Open(mysql.New(mysql.Config{
 		DSN: dsn,
 	}), &gorm.Config{Logger: logCfg})

+ 9 - 0
push.sh

@@ -0,0 +1,9 @@
+#!/bin/bash
+ssh root@110.40.223.170 "/usr/bin/killall iot_service"
+ssh root@110.40.223.170 "/usr/bin/rm -r /opt/lc/iot_svr/iot_service"
+scp -r build/* root@110.40.223.170:/opt/lc/iot_svr/
+
+# 以下需要 在线上服务器执行
+# /opt/lc/iot_svr/start.sh
+
+