8

How to setup a different configuration parameters file for each environment?

At the moment parameters in parameters.yml are used in both dev and prod environment, but I need different parameters in order to deploy my app in prod.

4

1 回答 1

12

您可以将dev环境中使用的所有参数放在一个app\config\parameters_dev.yml文件中(您需要创建它),然后将其导入您的app\config\config_dev.yml

imports:
    - { resource: config.yml }
    - { resource: parameters_dev.yml }

因此,当您在本地工作时,生产中使用的任何参数都将被具有正确参数的新文件覆盖。

并记得清除缓存!

于 2015-03-29T11:06:38.990 回答