config.yml 793B

1234567891011121314151617181920212223242526272829
  1. # This is the main configuration file of your Dancer app
  2. # env-related settings should go to environments/$env.yml
  3. # all the settings in this file will be loaded at Dancer's startup.
  4. # Your application's name
  5. appname: "SugarTrail"
  6. # The default layout to use for your application (located in
  7. # views/layouts/main.tt)
  8. layout: "main"
  9. # when the charset is set to UTF-8 Dancer will handle for you
  10. # all the magic of encoding and decoding. You should not care
  11. # about unicode within your app when this setting is set (recommended).
  12. charset: "UTF-8"
  13. # template engine
  14. # simple: default and very basic template engine
  15. # template_toolkit: TT
  16. template: "simple"
  17. # template: "template_toolkit"
  18. # engines:
  19. # template_toolkit:
  20. # encoding: 'utf8'
  21. # start_tag: '[%'
  22. # end_tag: '%]'