1

我有一个 Rails 应用程序需要连接到两个不同的数据库。这些数据库定义都在我的存储库的 database.yml 文件中,格式为:

production:
  adapter: ...
  database: ...
  username: ...
  password: ...

secondary-production:
  adapter: ...
  database: ...
  username: ...
  password: ...

我有用于生产、暂存和开发数据库的格式。在运行 cap deploy 或 cap production deploy 时,我需要使两个数据库定义都通过。

我不是在这个应用程序上设置 capistrano 的人,而且我以前从未使用过它,所以我发现很难弄清楚如何做到这一点。谁能指出我的相关文档或让我知道我需要使用什么文件和语法?

4

1 回答 1

1

I found the answer.

There was a database.yml.erb file in the /config/recipes/templates folder that I had to update.

于 2012-09-15T09:47:17.027 回答