0

这是在我的本地开发机器上部署存储在 repo 中的应用程序所需的最少选项吗?

# config/deploy.rb
set :scm, "git" # is this necessary?
set :user, "deployer"  # is this the username of my vps? How do I set the password?
set :deploy_to, "/rails_apps" # will this install the app to the /deployer/rails_apps directory of my ubuntu vps?

我仍然不知道如何指定我的 vps 的 ip 或密码。

我注意到配置文件很大......为什么我需要指定更多选项?应用上线后,我还想做些什么?

4

2 回答 2

0

这是在我的本地开发机器上部署存储在 repo 中的应用程序所需的最少选项吗?

Capistrano 3 无法做到这一点。请参阅rsync

于 2013-11-07T15:36:34.840 回答
0

capistrano 主页上的入门部分提供了有关最小工作示例的出色文档。

于 2013-11-07T15:31:58.930 回答