From: Raphaël Gertz Date: Sun, 25 Feb 2018 05:19:26 +0000 (+0100) Subject: Add parameters template X-Git-Tag: 0.1~59 X-Git-Url: https://git.rapsys.eu/blogbundle/commitdiff_plain/ec0306ff2083773fd88335934ea5823222968cd5 Add parameters template --- diff --git a/Resources/config/parameters.yml.dist b/Resources/config/parameters.yml.dist new file mode 100644 index 0000000..ab4e194 --- /dev/null +++ b/Resources/config/parameters.yml.dist @@ -0,0 +1,60 @@ +# This file is a "template" of what your parameters.yml file should look like +# Set parameters here that may be different on each deployment target of the app, e.g. development, staging, production. +# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration +parameters: + database_host: localhost + database_port: null + database_name: blog + database_user: blog + database_password: ~ + + mailer_transport: smtp + mailer_host: 127.0.0.1 + mailer_user: ~ + mailer_password: ~ + + # A secret key that's used to generate certain security-related tokens + secret: ThisTokenIsNotSoSecretChangeIt + + # Blog config + blog.locales: [ en, fr ] + blog.logo: 'bundles/rapsysblog/png/favicon.png' + blog.title: 'Dev log' + blog.welcome: 'Welcome to %blog.title%' + blog.contact_mail: 'blog@rapsys.eu' + blog.contact_name: 'Raphaël Gertz' + +# Add json dql function +doctrine: + orm: + dql: + string_functions: + Json: + Rapsys\BlogBundle\DQL\JsonFunction + +# Sension config +sensio_framework_extra: + router: + annotations: false + request: + converters: false + auto_convert: false + view: + annotations: false + cache: + annotations: false + security: + annotations: false + psr_message: + enabled: false + +# Set fallback locale +framework: + translator: + fallbacks: + - '%locale%' + +# Set twig global +twig: + globals: + blog_locales: '%blog.locales%'