这是在我的本地开发机器上部署存储在 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 或密码。
我注意到配置文件很大......为什么我需要指定更多选项?应用上线后,我还想做些什么?