]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/config/config_dev.yml
0c4905758e15b7f534614932b326c7120a3734c5
[github/wallabag/wallabag.git] / app / config / config_dev.yml
1 imports:
2 - { resource: config.yml }
3
4 framework:
5 router:
6 resource: "%kernel.project_dir%/app/config/routing_dev.yml"
7 strict_requirements: true
8 profiler:
9 only_exceptions: false
10
11 web_profiler:
12 toolbar: true
13 intercept_redirects: false
14
15 monolog:
16 handlers:
17 main:
18 type: stream
19 path: "%kernel.logs_dir%/%kernel.environment%.log"
20 level: debug
21 channels: ['!event']
22 console:
23 type: console
24 bubble: false
25 verbosity_levels:
26 VERBOSITY_VERBOSE: INFO
27 VERBOSITY_VERY_VERBOSE: DEBUG
28 channels: ['!event', '!doctrine']
29 console_very_verbose:
30 type: console
31 bubble: false
32 verbosity_levels:
33 VERBOSITY_VERBOSE: NOTICE
34 VERBOSITY_VERY_VERBOSE: NOTICE
35 VERBOSITY_DEBUG: DEBUG
36 channels: [doctrine]
37
38 swiftmailer:
39 # see http://mailcatcher.me/
40 transport: smtp
41 host: 'localhost'
42 port: 1025
43
44 # If you want to use cache for queries used in WallabagExtension
45 # Uncomment the following lines
46 #doctrine:
47 # orm:
48 # metadata_cache_driver: apcu
49 # result_cache_driver: apcu
50 # query_cache_driver: apcu