Important

You are browsing documentation for version 5.0 of OroCommerce, supported until January 2025. Read the documentation for version 6.0 (the latest LTS version) 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:

Deployment type (deployment_type) is one of the options in parameters.yml file, and it is asked during composer install.

config/parameters.yml 
   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:

config/parameters.yml 
       parameters:
           # ...
           deployment_type: local
config/deployment/config_local.yml 
       monolog:
           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.