# configuration file for development environment # the logger engine to use # console: log messages to STDOUT (your console where you started the # application server) # file: log message to a file in log/ logger: "console" # the log level for this environment # core is the lowest, it shows Dancer2's core log messages as well as yours # (debug, info, warning and error) # log: "core" # too verbose log: debug session: "simple" startup_info: 1 # should Dancer2 consider warnings as critical errors? warnings: 1 # display full stack traces when a warning or a die occurs (Internally sets Carp::Verbose) traces: 0 # should Dancer2 show a stacktrace when an error is caught? show_errors: 1 # auto_reload is a development and experimental feature # you should enable it by yourself if you want it # Module::Refresh is needed # # Be aware it's unstable and may cause a memory leak. # DO NOT EVER USE THIS FEATURE IN PRODUCTION # OR TINY KITTENS SHALL DIE WITH LOTS OF SUFFERING auto_reload: 0 # output sql to stdout & logs/devel.sql (queries can be large): enable_sql_trace: 1 # look to X-Forwarded-Protocol and X-Forwarded-host when constructing URLs # (for example, when using redirect) # behind_proxy: 1 # not for development, maybe for deployment? # enable forking (hindrance on dev server): fork: 0