1# This file is a "template" of what your parameters.yml file should look like 2# Set parameters here that may be different on each deployment target of the app, e.g. development, staging, production. 3# http://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration 4parameters: 5 database_host: 127.0.0.1 6 database_port: ~ 7 database_name: prestashop 8 database_user: root 9 database_password: ~ 10 database_prefix: ps_ 11 database_engine: InnoDB 12 # You should uncomment this if you want use pdo_sqlite 13 # database_path: "%kernel.root_dir%/data.db3" 14 15 mailer_transport: smtp 16 mailer_host: 127.0.0.1 17 mailer_user: ~ 18 mailer_password: ~ 19 20 # A secret key that's used to generate certain security-related tokens 21 secret: ThisTokenIsNotSoSecretChangeIt 22 ps_caching: CacheMemcache 23 ps_cache_enable: false 24 ps_creation_date: ~ 25 locale: en-US 26 27 use_debug_toolbar: true 28