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.
我希望有一个 database.yaml 作为两个独立团队正在开展的项目的一部分。虽然测试和生产部分相同,但两个团队的开发部分不同。有没有办法使用本地环境变量来做到这一点?
您可以创建自己的配置机制(例如,每个用户、每台机器等),或者只是创建一个新配置并通过以下方式进行设置RAILS_ENV:
RAILS_ENV
RAILS_ENV=dev1 rails s # Or rails c etc, to run the "other" dev config... RAILS_ENV=dev2 rails s