2020年前端必須掌握的自動化部署(webhooks)

緣起

最近用Gatsby 寫了一個我的blog,link => new.ruoduan.cn/node

Github 🙏🙏🙏 Stargit

發現 build 後體積太大,FTP 發文件 都要10幾分鐘,挑選來下自動化部署工具🔧,本打算用jenkins 感受有點重,並且學習成本較高。 看了一下以爲 使用 github的webHooks 是最合適的github

Graph

大體流程是這樣的:👇web

webHooks自動化部署

  • 話很少說直接上代碼 代碼分爲三個部分
  1. Nodejs => Server
  2. Shell 腳本
  3. 插件

install

個人環境是 CentOSshell

服務器 應具有 nodejs && gitnpm

  • 首先先安裝 github-webhooks的插件和pm2 服務器上 npm install -g github-webhook-handler pm2

nodejs 服務

webhooks.js安全

var http = require('http')
// github-webhook-handler 的絕對路徑
var createHandler = require('/usr/lib/node_modules/github-webhook-handler')
var handler = createHandler({ path: '/', secret: 'xxx' })
// 上面的 secret 保持和 GitHub 後臺設置的一致

function run_cmd(cmd, args, callback) {
  var spawn = require('child_process').spawn;
  var child = spawn(cmd, args);
  var resp = "";

  child.stdout.on('data', function(buffer) { resp += buffer.toString(); });
  child.stdout.on('end', function() { callback (resp) });
}

http.createServer(function (req, res) {
  handler(req, res, function (err) {
    res.statusCode = 404
    res.end('no such location')
  })
}).listen(7777) // 啓動服務的端口,須要開放安全組

handler.on('error', function (err) {
  console.error('Error:', err.message)
})

handler.on('push', function (event) {
  console.log('Received a push event for %s to %s',
    event.payload.repository.name,
    event.payload.ref);
    run_cmd('sh', ['./webhooks.sh',event.payload.repository.name], function(text){ console.log(text) });
})
複製代碼

shell

webhooks.shbash

 #!/bin/bash
WEB_PATH='/root/githubWebhook/warehouse/my-Gatsby-Blog'


echo "開始執行shell"
cd $WEB_PATH
echo "pulling source code..."
git pull
echo "changing permissions..."
#chown -R $WEB_USER:$WEB_USERGROUP $WEB_PATH
echo " git pull 完成. 開始 build"
yarn run gatsby build
echo "build 完成"
複製代碼

到這裏 咱們服務端須要準備的東西就差很少了 Nginx 就不放出來服務器

Github Settings

放一張圖吧框架

ithub Settings

start

接下來 pm2 啓動服務

pm2 start webhooks.js -o ./webhooks.log

pm2的一些基本命令

寫在最後

接下來 我還會更新一篇 長文 Gatsby 的文章 詳細指出 其中的利弊,不管你是 新手仍是想使用現代框架 ——— React 來維護我本身的blog 的老手 都很是適合

個人 New Blog => new.ruoduan.cn/

年後想換個工做,求內推!求內推!求內推! Live:杭州

個人一些信息 可查看個人 Blog about 部分 new.ruoduan.cn/about

相關文章
相關標籤/搜索