]> git.evergreen-ils.org Git - working/NCIPServer.git/blob - config.yml
More CancelRequestItem functionality for NCIP::ILS::Evergreen.
[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 views: "/home/chrisc/git/NCIPServer/templates/"
9
10 # The default layout to use for your application (located in
11 # views/layouts/main.tt)
12 layout: "main"
13
14 # when the charset is set to UTF-8 Dancer will handle for you
15 # all the magic of encoding and decoding. You should not care
16 # about unicode within your app when this setting is set (recommended).
17 charset: "UTF-8"
18
19 # template engine
20 # simple: default and very basic template engine
21 # template_toolkit: TT
22
23 #template: "simple"
24
25 template: "template_toolkit"
26 engines:
27    template_toolkit:
28      start_tag: '[%'
29      end_tag:   '%]'
30
31 # default MIME type for the responses.
32 # (See ANSI/NISO Z39.83-2-2012 Section 7.3, page 13.)
33 default_mime_type: "application/xml; charset='utf-8'"