Fetch the repository succeeded.
This action will force synchronization from itvita/ant-form-designer, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
'use strict'
// 引入scp2
const client = require('scp2')
// 下面三个插件是部署的时候控制台美化所用 可有可无
const ora = require('ora')
const chalk = require('chalk')
const spinner = ora(chalk.green('正在发布到服务器...'))
spinner.start()
client.scp('/Users/liuqiang/Documents/interest/ant-form-designer/dist/', { // 本地打包文件的位置
'host': '#', // 服务器的IP地址
'port': '22', // 服务器端口, 一般为 22
'username': '#', // 用户名
'password': '#', // 密码
'path': '/opt/home/ant-form-designer/' // 项目部署的服务器目标位置
}, err => {
spinner.stop()
if (!err) {
console.log(chalk.green('项目发布完毕!'))
} else {
console.log('err', err)
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。