]> git.ktnx.net Git - lsl.git/blob - config.yml
hide the mass-action button on broken streak
[lsl.git] / config.yml
1 # === Basic configuration ===
2
3 # Your application's name
4 appname: "App::REST::LazyShoppingList"
5
6 # The default layout to use for your application (located in
7 # views/layouts/main.tt)
8 layout: "main"
9
10 # === Engines ===
11 #
12 # NOTE: All the engine configurations need to be under a single "engines:"
13 # key.  If you uncomment engine configurations below, make sure to delete
14 # all "engines:" lines except the first.  Otherwise, only the last
15 # "engines:" block will take effect.
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:
26 #     template_toolkit:
27 #       # Note: start_tag and end_tag are regexes
28 #       start_tag: '<%'
29 #       end_tag:   '%>'
30
31 # session engine
32 #
33 # Simple: in-memory session store - Dancer2::Session::Simple
34 # YAML: session stored in YAML files - Dancer2::Session::YAML
35 #
36 # Check out metacpan for other session storage options:
37 # https://metacpan.org/search?q=Dancer2%3A%3ASession&search_type=modules
38 #
39 # Default value for 'cookie_name' is 'dancer.session'. If you run multiple
40 # Dancer apps on the same host then you will need to make sure 'cookie_name'
41 # is different for each app.
42 #
43 #engines:
44 #  session:
45 #    Simple:
46 #      cookie_name: testapp.session
47 #
48 #engines:
49 #  session:
50 #    YAML:
51 #      cookie_name: eshop.session
52 #      is_secure: 1
53 #      is_http_only: 1
54
55 db:
56     dsn: "dbi:Pg:dbname=lsl"