|
1 | 1 | imports: |
2 | | - -{ resource: config.local.yml } |
3 | | - |
4 | | -parameters: |
5 | | -env(MYSQL_HOST):'mysql' |
6 | | -env(MYSQL_USER):'baton' |
7 | | -env(MYSQL_PASSWORD):'baton' |
8 | | -env(MYSQL_DATABASE):'baton' |
9 | | -env(MYSQL_PORT):'3306' |
10 | | - |
11 | | -mysql.host:'%env(MYSQL_HOST)%' |
12 | | -mysql.user:'%env(MYSQL_USER)%' |
13 | | -mysql.password:'%env(MYSQL_PASSWORD)%' |
14 | | -mysql.db:'%env(MYSQL_DATABASE)%' |
15 | | -mysql.port:'%env(MYSQL_PORT)%' |
16 | | - |
17 | | -framework.trusted_hosts:['127.0.0.1', 'localhost', '%env(HOSTNAME)%'] |
18 | | - |
19 | | -app.logging.default_time_format:"Y-m-d H:i:s.u T"# with microseconds and timezone, a format also Splunk can understand |
20 | | -app.logging.allow_inline_line_breaks:false |
21 | | - |
22 | | -demo_mode:'%env(DEMO_MODE)%' |
23 | | -env(DEMO_MODE):# default is null, set this environment variable on your server to enable demo mode and deactivate project imports via form |
24 | | - |
25 | | -secret:"%env(SECRET)%" |
26 | | -env(SECRET):"change_me" |
27 | | -app.kiln.token:'%env(KILN_OAUTH_TOKEN)%' |
28 | | -app.github.token:'%env(GITHUB_OAUTH_TOKEN)%' |
29 | | -env(GITHUB_OAUTH_TOKEN):# default is null, set this environment variable on your server to communicate with private repositories on GitHub |
30 | | -env(KILN_OAUTH_TOKEN):# default is null, set this environment variable on your server to communicate with repositories on Kiln |
31 | | - |
32 | | - |
33 | | -framework: |
34 | | -secret:"%secret%" |
35 | | -router:{ resource: "%kernel.root_dir%/routing.yml" } |
36 | | -form: |
37 | | -enabled:true |
38 | | -csrf_protection: |
39 | | -enabled:false |
40 | | -validation:{ enable_annotations: true } |
41 | | -templating:{ engines: ['twig'] } |
42 | | -translator:{ fallback: de_DE } |
43 | | -session: |
44 | | -save_path:null |
45 | | -default_locale:de_DE |
46 | | -trusted_hosts:"%framework.trusted_hosts%" |
47 | | - |
48 | | -twig: |
49 | | -strict_variables:"%kernel.debug%" |
50 | | -form_themes: |
51 | | - -'AppBundle:Form:fields.html.twig' |
52 | | - |
53 | | -doctrine: |
54 | | -dbal: |
55 | | -host:"%mysql.host%" |
56 | | -port:"%mysql.port%" |
57 | | -dbname:"%mysql.db%" |
58 | | -user:"%mysql.user%" |
59 | | -password:"%mysql.password%" |
60 | | -charset:utf8 |
61 | | -schema_filter:~^(?!(_dbversion$|_fixed_tableid$|wfd_))~ |
62 | | -server_version:5.7 |
63 | | -orm: |
64 | | -auto_mapping:true |
65 | | - |
66 | | -services: |
67 | | -app.logging.web_processor: |
68 | | -class:Monolog\Processor\WebProcessor |
69 | | -arguments:[~, []] |
70 | | -tags: |
71 | | - -{ name: monolog.processor } |
72 | | - |
73 | | -app.logging.line_formatter: |
74 | | -class:Monolog\Formatter\LineFormatter |
75 | | -arguments: |
76 | | - -"%app.logging.default_line_format%" |
77 | | - -"%app.logging.default_time_format%" |
78 | | -calls: |
79 | | - -[includeStacktraces, [true]] |
80 | | - -[allowInlineLineBreaks, ["%app.logging.allow_inline_line_breaks%"]] |
| 2 | + -{ resource: config.default.yml } |
| 3 | + -{ resource: config.local.yml, ignore_errors: true } |