Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很好奇如何使用短命令配置capistrano 3cap deploy以默认部署在生产环境中,而不是 full cap production deploy。
cap deploy
cap production deploy
在你的 deploy.rb 中试试这个:
require 'capistrano/ext/multistage' set :stages, ["dev", "production"] set :default_stage, "production"
然后运行:
在你的 Capfile 中添加这个在底部
invoke :beta
这将调用 beta 阶段并将其设为默认值。
我不确定这是正确的方法,但它似乎有效:)