Mercurial > hg > dml-open-vis
comparison app/config/config.yml @ 0:493bcb69166c
added public content
author | Daniel Wolff |
---|---|
date | Tue, 09 Feb 2016 20:54:02 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:493bcb69166c |
---|---|
1 imports: | |
2 - { resource: parameters.yml } | |
3 - { resource: assets_version.yml } | |
4 - { resource: security.yml } | |
5 | |
6 framework: | |
7 #esi: ~ | |
8 #translator: { fallback: "%locale%" } | |
9 secret: "%secret%" | |
10 router: | |
11 resource: "%kernel.root_dir%/config/routing.yml" | |
12 strict_requirements: ~ | |
13 form: ~ | |
14 csrf_protection: ~ | |
15 validation: { enable_annotations: true } | |
16 templating: | |
17 engines: ['twig'] | |
18 assets_version: "%assets_version%" | |
19 assets_base_urls: './$' | |
20 default_locale: "%locale%" | |
21 trusted_hosts: ~ | |
22 trusted_proxies: ~ | |
23 session: | |
24 # handler_id set to null will use default session handler from php.ini | |
25 handler_id: ~ | |
26 fragments: ~ | |
27 http_method_override: true | |
28 | |
29 # Assets version | |
30 kachkaev_assets_version: | |
31 filename: "%kernel.root_dir%/config/assets_version.yml" | |
32 parametername: assets_version | |
33 | |
34 # Twig Configuration | |
35 twig: | |
36 debug: "%kernel.debug%" | |
37 strict_variables: "%kernel.debug%" | |
38 | |
39 # Assetic Configuration | |
40 assetic: | |
41 debug: "%kernel.debug%" | |
42 use_controller: false # use app/console assetic:watch | |
43 bundles: [DMLMainVisBundle,DMLVendorAssetsBundle] | |
44 write_to: "%kernel.root_dir%/../$" | |
45 | |
46 #java: /usr/bin/java | |
47 filters: | |
48 cssrewrite: ~ | |
49 less: | |
50 node: /usr/local/bin/node | |
51 node_paths: [/usr/local/lib/node, /usr/lib/node_modules/] | |
52 uglifycss: | |
53 bin: /usr/local/bin/uglifycss | |
54 uglifyjs2: | |
55 bin: /usr/local/bin/uglifyjs | |
56 comments: /^!/ | |
57 | |
58 # Doctrine Configuration | |
59 doctrine: | |
60 dbal: | |
61 driver: "%database_driver%" | |
62 host: "%database_host%" | |
63 port: "%database_port%" | |
64 dbname: "%database_name%" | |
65 user: "%database_user%" | |
66 password: "%database_password%" | |
67 server_version: "%database_server_version%" | |
68 charset: UTF8 | |
69 # if using pdo_sqlite as your database driver: | |
70 # 1. add the path in parameters.yml | |
71 # e.g. database_path: "%kernel.root_dir%/data/data.db3" | |
72 # 2. Uncomment database_path in parameters.yml.dist | |
73 # 3. Uncomment next line: | |
74 # path: "%database_path%" | |
75 | |
76 orm: | |
77 auto_generate_proxy_classes: "%kernel.debug%" | |
78 auto_mapping: true | |
79 | |
80 # Swiftmailer Configuration | |
81 #swiftmailer: | |
82 # transport: "%mailer_transport%" | |
83 # host: "%mailer_host%" | |
84 # username: "%mailer_user%" | |
85 # password: "%mailer_password%" | |
86 # spool: { type: memory } | |
87 | |
88 jstmpl: | |
89 source: | |
90 patterns: ~ |