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.
我曾经让 Heroku 管理我的 Rails 应用程序部署,但现在我用 Capistrano、Nginix 和 Unicorn 构建了自己的服务器。
在 Heroku 中,当我想运行 rake 任务时,我会这样做:
heroku run rake:migrate VERSION=0
如何使用 Capistrano 完成相同的任务?我似乎找不到一个清晰而简单的解决方案。
谢谢你。
尝试:
bundle exec RAILS_ENV=PRODUCTION rake db:migrate VERSION=0
在项目的current目录上。
current
在这里您可以找到有关主题的更多信息。