write a proper schema.sql
[ppolls.git] / config.yml
blob2ab524b34f9ae8214720d79d0429f3df8542ece1
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.
5 # Your application's name
6 appname: "Ppolls"
8 # The default layout to use for your application (located in
9 # views/layouts/main.tt)
10 layout: "main"
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"
17 # template engine
18 # simple: default and very basic template engine
19 # template_toolkit: TT
21 template: "simple"
23 # template: "template_toolkit"
24 # engines:
25 #   template_toolkit:
26 #     encoding:  'utf8'
27 #     start_tag: '[%'
28 #     end_tag:   '%]'
29         
30         
31 plugins:
32     Database:
33         connections:
34             users:
35                 driver: 'SQLite'
36                 database: 'users.sqlite'
37             questions:
38                 driver: 'SQLite'
39                 database: 'questions.sqlite'