development.yml 916B

12345678910111213141516171819202122232425262728293031
  1. # configuration file for development environment
  2. # the logger engine to use
  3. # console: log messages to STDOUT (your console where you started the
  4. # application server)
  5. # file: log message to a file in log/
  6. logger: "console"
  7. # the log level for this environment
  8. # core is the lowest, it shows Dancer's core log messages as well as yours
  9. # (debug, info, warning and error)
  10. log: "core"
  11. # should Dancer consider warnings as critical errors?
  12. warnings: 1
  13. # should Dancer show a stacktrace when an error is caught?
  14. show_errors: 1
  15. # auto_reload is a development and experimental feature
  16. # you should enable it by yourself if you want it
  17. # Module::Refresh is needed
  18. #
  19. # Be aware it's unstable and may cause a memory leak.
  20. # DO NOT EVER USE THIS FEATURE IN PRODUCTION
  21. # OR TINY KITTENS SHALL DIE WITH LOTS OF SUFFERING
  22. auto_reload: 0
  23. # sugar-trail repo root
  24. repo_root: /srv/strail/strepo
  25. repo_vcs: git