Browse Source

命令部署

aleyds 1 year ago
parent
commit
7a8dfe2465
3 changed files with 42 additions and 3 deletions
  1. 1 1
      .env.staging
  2. 35 0
      deploy/index.js
  3. 6 2
      package.json

+ 1 - 1
.env.staging

@@ -14,4 +14,4 @@ VUE_APP_BASE_IMAGE = /stage-api/file/statics
 
 # 部署的URL
 # 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 为 /admin。
-VUE_APP_ASSETS_PUBLIC_PATH = '/'
+VUE_APP_ASSETS_PUBLIC_PATH = '/'

+ 35 - 0
deploy/index.js

@@ -0,0 +1,35 @@
+const chalk = require('chalk')
+const scpClient = require('scp2')
+let server = {}
+
+//需要根据不同项目进行配置
+console.log(chalk.white('部署环境:'+ process.env.NODE_ENV))
+if (process.env.NODE_ENV === 'prod'){
+  server = {
+    host:'172.16.90.65',//服务器IP
+    port:22,//服务器端口
+    username:'root',//服务器ssh登录用户名
+    password:'hongwei$123',//服务器ssh登录密码
+    path:'/www/wwwroot/tourismmer.dev.gztjy.top'//服务器web目录
+  }
+}else{
+  server = {
+    host:'172.16.90.64',//服务器IP
+    port:22,//服务器端口
+    username:'root',//服务器ssh登录用户名
+    password:'hongwei$123',//服务器ssh登录密码
+    path:'/www/wwwroot/tourismmer.dev.gztjy.top'//服务器web目录
+  }
+}
+
+console.log(chalk.blue('项目部署到服务器:'+ server.host))
+console.log(chalk.blue('部署目录:'+ server.path))
+scpClient.scp('dist/', server ,(err)=>{
+  console.log(chalk.green('部署完成'))
+  if(err){
+    console.log(chalk.red('部署失败'))
+    throw err
+  }else{
+    console.log(chalk.green('部署成功'))
+  }
+})

+ 6 - 2
package.json

@@ -9,7 +9,10 @@
     "build:prod": "vue-cli-service build",
     "build:stage": "vue-cli-service build --mode staging",
     "preview": "node build/index.js --preview",
-    "lint": "eslint --ext .js,.vue src"
+    "lint": "eslint --ext .js,.vue src",
+    "deploy:dev": "npm run build:stage && cross-env NODE_ENV=dev node deploy/index.js --preview",
+    "deploy:prod": "npm run build:prod && cross-env NODE_ENV=prod node deploy/index.js --preview"
+
   },
   "husky": {
     "hooks": {
@@ -50,6 +53,7 @@
     "jsencrypt": "3.0.0-rc.1",
     "nprogress": "0.2.0",
     "quill": "1.3.7",
+    "scp2": "^0.5.0",
     "screenfull": "5.0.2",
     "sortablejs": "1.10.2",
     "vue": "2.6.12",
@@ -66,7 +70,7 @@
     "@vue/cli-service": "4.4.6",
     "babel-eslint": "10.1.0",
     "babel-plugin-dynamic-import-node": "2.3.3",
-    "chalk": "4.1.0",
+    "chalk": "^4.1.0",
     "compression-webpack-plugin": "5.0.2",
     "connect": "3.6.6",
     "eslint": "7.15.0",