1 Star 2 Fork 1

小林 / vuepressblog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
deploy.js 432 Bytes
一键复制 编辑 原始数据 按行查看 历史
const fs = require('fs')
const scpClient = require('scp2')
const ora = require('ora')
const serverInfo = JSON.parse(fs.readFileSync('serverInfo.json'))
const loading = ora('正在部署至 ' + serverInfo.host )
loading.start()
scpClient.scp('./docs/.vuepress/dist/', serverInfo ,(err)=>{
loading.stop()
if(err) {
console.log('部署失败')
throw err
}else {
console.log('部署成功')
}
})
NodeJS
1
https://gitee.com/peterjxl/vuepressblog.git
git@gitee.com:peterjxl/vuepressblog.git
peterjxl
vuepressblog
vuepressblog
master

搜索帮助