- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这是我为我的 Node.js 应用程序设想的管道:
在开发机器上编写代码 -> 提交到 github -> Travis 构建和测试 -> 成功:部署到私有(private)服务器
我正在寻找工具来完成最后一部分。
例如,一些工具会收到 Travis 的通知,并将代码从 github 拉到我的私有(private)服务器(并以这种方式部署应用程序)。
最佳答案
You can easily deploy to your own server the way you would deploy from your local machine by adding a custom after_success step.
You may choose the Script provider instead, as it provides easier flexibility with conditional deployment.
FTP
env:
global:
- "FTP_USER=user"
- "FTP_PASSWORD=password"
after_success:
"curl --ftp-create-dirs -T uploadfilename -u $FTP_USER:$FTP_PASSWORD ftp://sitename.com/directory/myfile"
The env variables FTP_USER and FTP_PASSWORD can also be encrypted.
See curl(1) for more details on how to use cURL as an FTP client.
或 Git
after_success:
- eval "$(ssh-agent -s)" #start the ssh agent
- chmod 600 .travis/deploy_key.pem # this key should have push access
- ssh-add .travis/deploy_key.pem
- git remote add deploy DEPLOY_REPO_URI_GOES_HERE
- git push deploy
See “How can I encrypt files that include sensitive data?” if you don’t want to commit the private key unencrypted to your repository.
关于node.js - 在 Travis 构建/测试成功后,如何将 Node.js 应用程序部署到私有(private)服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37634680/
我是一名优秀的程序员,十分优秀!