wallabag/app/config/config_dev.yml

51 lines
1.3 KiB
YAML
Raw Normal View History

2015-01-22 07:30:07 +00:00
imports:
- { resource: config.yml }
framework:
router:
resource: "%kernel.project_dir%/app/config/routing_dev.yml"
2015-01-22 07:30:07 +00:00
strict_requirements: true
2016-06-24 09:28:07 +00:00
profiler:
only_exceptions: false
2015-01-22 07:30:07 +00:00
web_profiler:
toolbar: true
intercept_redirects: false
monolog:
handlers:
main:
2016-06-24 09:28:07 +00:00
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
2016-06-01 19:27:35 +00:00
channels: ['!event']
2015-01-22 07:30:07 +00:00
console:
2016-06-24 09:28:07 +00:00
type: console
2015-01-22 07:30:07 +00:00
bubble: false
verbosity_levels:
VERBOSITY_VERBOSE: INFO
VERBOSITY_VERY_VERBOSE: DEBUG
2016-06-01 19:27:35 +00:00
channels: ['!event', '!doctrine']
2015-01-22 07:30:07 +00:00
console_very_verbose:
2016-06-24 09:28:07 +00:00
type: console
2015-01-22 07:30:07 +00:00
bubble: false
verbosity_levels:
VERBOSITY_VERBOSE: NOTICE
VERBOSITY_VERY_VERBOSE: NOTICE
VERBOSITY_DEBUG: DEBUG
2016-01-14 17:15:07 +00:00
channels: [doctrine]
2015-01-22 07:30:07 +00:00
2015-03-07 22:25:36 +00:00
swiftmailer:
# see https://mailcatcher.me/
2015-03-07 22:25:36 +00:00
transport: smtp
host: 'localhost'
port: 1025
2016-09-03 12:02:50 +00:00
# If you want to use cache for queries used in WallabagExtension
# Uncomment the following lines
#doctrine:
# orm:
# metadata_cache_driver: apcu
# result_cache_driver: apcu
# query_cache_driver: apcu