]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/config/config_dev.yml
Remove some commented code
[github/wallabag/wallabag.git] / app / config / config_dev.yml
CommitLineData
93fd4692
NL
1imports:
2 - { resource: config.yml }
3
4framework:
5 router:
6 resource: "%kernel.root_dir%/config/routing_dev.yml"
7 strict_requirements: true
8 profiler: { only_exceptions: false }
9
10web_profiler:
11 toolbar: true
12 intercept_redirects: false
13
14monolog:
15 handlers:
16 main:
17 type: stream
18 path: "%kernel.logs_dir%/%kernel.environment%.log"
19 level: debug
20 console:
21 type: console
22 bubble: false
23 verbosity_levels:
24 VERBOSITY_VERBOSE: INFO
25 VERBOSITY_VERY_VERBOSE: DEBUG
26 channels: ["!doctrine"]
27 console_very_verbose:
28 type: console
29 bubble: false
30 verbosity_levels:
31 VERBOSITY_VERBOSE: NOTICE
32 VERBOSITY_VERY_VERBOSE: NOTICE
33 VERBOSITY_DEBUG: DEBUG
34 channels: ["doctrine"]
93fd4692
NL
35
36assetic:
37 use_controller: true
38
6894d48e
J
39swiftmailer:
40 # see http://mailcatcher.me/
41 transport: smtp
42 host: 'localhost'
43 port: 1025
44 username: null
45 password: null
46