]> git.evergreen-ils.org Git - working/NCIPServer.git/blob - config.yml
e72abaddf175b49938deed558ef1d859799e84a1
[working/NCIPServer.git] / config.yml
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
5 # Your application's name
6 appname: "NCIP::Dancing"
7
8 # The default layout to use for your application (located in
9 # views/layouts/main.tt)
10 layout: "main"
11
12 # when the charset is set to UTF-8 Dancer will handle for you
13 # all the magic of encoding and decoding. You should not care
14 # about unicode within your app when this setting is set (recommended).
15 charset: "UTF-8"
16
17 # template engine
18 # simple: default and very basic template engine
19 # template_toolkit: TT
20
21 #template: "simple"
22
23 template: "template_toolkit"
24 engines:
25    template_toolkit:
26      start_tag: '[%'
27      end_tag:   '%]'
28