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.
我有一个 Sinatra 和 Rails 3 应用程序。应用程序是独立创建的,并托管在 2 个独立的 Heroku 实例中。因此,我需要为两个应用程序共享一个 MongoHQ 数据库。我该怎么做?任何的想法?
谢谢。
这真的很容易。
在具有 MongoHQ 数据库的应用程序中,查看heroku config- 你正在寻找条目的输出MONGOHQ_URL。
heroku config
MONGOHQ_URL
您需要做的就是在另一个应用程序上将类似的配置变量设置为与第一个应用程序显示的值相同的值,然后在第二个应用程序中将其用作 ENV['MONGOHQ_URL']。