Vue-CLI 3.x 部署專案至生產伺服器

sufaith發表於2019-03-28

本教程主要講解的是 Vue-CLI 3.x 腳手架搭建的vue專案, 先構建生成dist檔案(純靜態應用), 然後自動化部署到靜態檔案伺服器 Nginx。

一、Nginx伺服器檔案的配置

server {
        listen 80;
        server_name www.xxxxxx.com;#生產環境
		location / {
			root /usr/local/www/xxx_program/;
			index index.html;
			try_files $uri $uri/ /index.html;
		}
	}
	server {
        listen 80;
        server_name test.xxxxxx.com; #測試環境
		location / {
			root /usr/local/www/xxx_program_test/;
			index index.html;
			try_files $uri $uri/ /index.html;
		}
	}複製程式碼


二、配置生產/測試環境 伺服器SSH遠端登陸賬號


  1. 在專案根目錄下, 建立 .env 檔案 (當前環境變數)

VUE_APP_SERVER_ID變數指代 當前需部署的伺服器ID為0

VUE_APP_SERVER_ID=0複製程式碼

2. 在專案根目錄下, 建立 deploy/products.js 檔案

該檔案功能如下:

(1) 讀取env環境變數

const fs = require('fs')
const path = require('path')
// env環境變數的路徑
const envPath = path.resolve(__dirname, '../.env')
// env物件
const envObj = parse(fs.readFileSync(envPath, 'utf8'))
const SERVER_ID = parseInt(envObj['VUE_APP_SERVER_ID'])

function parse (src) {
  // 解析KEY=VAL的檔案
  const res = {}
  src.split('\n').forEach(line => {
    // matching "KEY' and 'VAL' in 'KEY=VAL'
    const keyValueArr = line.match(/^\s*([\w\.\-]+)\s*=\s*(.*)?\s*$/)
    // matched?
    if (keyValueArr != null) {
      const key = keyValueArr[1]
      let value = keyValueArr[2] || ''

      // expand newlines in quoted values
      const len = value ? value.length : 0
      if (len > 0 && value.charAt(0) === '"' && value.charAt(len - 1) === '"') {
        value = value.replace(/\\n/gm, '\n')
      }

      // remove any surrounding quotes and extra spaces
      value = value.replace(/(^['"]|['"]$)/g, '').trim()

      res[key] = value
    }
  })
  return res
}複製程式碼


(2) 定義多個伺服器賬號 及 根據 SERVER_ID 匯出當前環境伺服器賬號

const SERVER_LIST = [
  {
    id: 0,
    name: 'A-生產環境',
    domain: 'www.xxx.com',
    host: 'XX.XX.XX.XX',
    port: 22,
    username: 'root',
    password: 'xxxxxxx',
    path: '/usr/local/www/xxx_program/'
  },
  {
    id: 1,
    name: 'B-測試環境',
    domain: 'test.xxx.com',
    host: 'XX.XX.XX.XX',
    port: 22,
    username: 'root',
    password: 'xxxxxxx',
    path: '/usr/local/www/xxx_program_test/'
  },  
]

module.exports = SERVER_LIST[SERVER_ID]複製程式碼


三、建立自動化部署指令碼 (使用scp2庫)

在專案根目錄下, 建立 deploy/index.js 檔案

const scpClient = require('scp2')
const ora = require('ora')
const chalk = require('chalk')
const server = require('./products')
const spinner = ora('正在釋出到生產伺服器...')
spinner.start()
scpClient.scp('dist/', {
  host: server.host,
  port: server.port,
  username: server.username,
  password: server.password,
  path: server.path
}, function(err) {
  spinner.stop()
  if (err) {
    console.log(chalk.red('  釋出失敗.\n'))
    throw err
  } else {
    console.log(chalk.green('  Success! 成功釋出到生產伺服器! \n'))
  }
})複製程式碼


四、新增 package.json 中的 scripts 命令, 自定義名稱為 "deploy"

"scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint",
    "deploy": "npm run build && node ./deploy"
  }複製程式碼


五、執行部署任務

在專案根目錄下 執行 npm run deploy命令, 或 使用 vue ui控制皮膚執行deploy任務, 即可自動打包並部署至線上伺服器

Vue-CLI 3.x 部署專案至生產伺服器


備註: 要切換部署的伺服器, 只需修改 .env檔案中的伺服器ID, 然後再執行deploy任務即可.

福利: 本文已同步到我的個人技術網站 IT乾貨-sufaith 該網站包括Python, Linux, Nodejs, 前端開發等模組, 專注於程式開發中的技術、經驗總結與分享, 歡迎訪問.


相關文章