Blame rest-server/environments/development.yml

Packit 23ab03
# configuration file for development environment
Packit 23ab03
Packit 23ab03
# the logger engine to use
Packit 23ab03
# console: log messages to STDOUT (your console where you started the
Packit 23ab03
#          application server)
Packit 23ab03
# file:    log message to a file in log/
Packit 23ab03
logger: "console"
Packit 23ab03
Packit 23ab03
# the log level for this environment
Packit 23ab03
# core is the lowest, it shows Dancer's core log messages as well as yours
Packit 23ab03
# (debug, info, warning and error)
Packit 23ab03
log: "core"
Packit 23ab03
Packit 23ab03
# should Dancer consider warnings as critical errors?
Packit 23ab03
warnings: 1
Packit 23ab03
Packit 23ab03
# should Dancer show a stacktrace when an error is caught?
Packit 23ab03
show_errors: 1
Packit 23ab03
Packit 23ab03
# auto_reload is a development and experimental feature
Packit 23ab03
# you should enable it by yourself if you want it
Packit 23ab03
# Module::Refresh is needed 
Packit 23ab03
# 
Packit 23ab03
# Be aware it's unstable and may cause a memory leak.
Packit 23ab03
# DO NOT EVER USE THIS FEATURE IN PRODUCTION 
Packit 23ab03
# OR TINY KITTENS SHALL DIE WITH LOTS OF SUFFERING
Packit 23ab03
auto_reload: 0