Important
You are browsing the documentation for version 4.2 of OroCommerce, OroCRM and OroPlatform, which is no longer maintained. Read version 5.1 (the latest LTS version) of the Oro documentation to get up-to-date information.
See our Release Process documentation for more information on the currently supported and upcoming releases.
Environment Type-Based Application Configuration¶
Use different default configurations based on the environment where the application is deployed:
Local Development Machine
etc.
Deployment type (deployment_type
) is one of the options in parameters.yml file, and it is asked during composer install
.
parameters: # ... deployment_type: null
To start using deployment type, change value deployment_type: <type>
in config/parameters.yml and create a config file in config/deployment/config_<type>.yml.
This configuration will have the highest priority.
For example:
parameters: # ... deployment_type: localmonolog: handlers: # your additional monolog configuration
Note
For more details on how to configure the environment type based application in the Cloud environment, please see the related cloud documentation.