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 上,使用 Mongolab 存储数据(MongoDB)。我需要创建 2 个不同的数据库实例:一个用于 prod,一个用于 dev。
知道我该怎么做以及如何告诉我的代码使用哪一个吗?
谢谢
您应该使用配置变量 (https://devcenter.heroku.com/articles/config-vars) 来设置数据库 url,然后在 mongo 初始化程序中使用环境变量。将一个应用设置为使用生产 url,将一个开发应用设置为使用开发者数据库 url。