-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.yml
74 lines (65 loc) · 1.84 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# This is the main configuration file of your Dancer app
# env-related settings should go to environments/$env.yml
# all the settings in this file will be loaded at Dancer's startup.
# Your application's name
appname: "Flowers"
# The default layout to use for your application (located in
# views/layouts/main.tt)
layout: "main"
# when the charset is set to UTF-8 Dancer will handle for you
# all the magic of encoding and decoding. You should not care
# about unicode within your app when this setting is set (recommended).
charset: "UTF-8"
# include timestamp in log format
logger_format: "%t [%P] %L @%D> %m in %f l. %l"
# set template engine
template: "template_flute"
engines:
template_flute:
check_dangling: 1
filters:
currency:
options:
int_curr_symbol: "EUR"
p_cs_precedes: "0"
mon_thousands_sep: "."
mon_decimal_point: ","
p_sep_by_space: "1"
image:
class: "Flowers::Filters::Image"
# site locale
locale: sl_SI
# sample DBIC and DPAE plugin configuration, please override in environments/*
plugins:
DBIC:
default:
dsn: dbi:mysql:ic6
user: flowerpower
password: nevairbe
schema_class: Interchange6::Schema
options:
RaiseError: 1
PrintError: 1
Auth::Extensible:
disable_roles: 0
no_login_handler: 1
login_page: /login
logout_page: /logout
denied_page: /login/denied
no_default_pages: 1
no_api_change_warning: 1
realms:
users:
provider: 'DBIC'
db_connection_name: 'default'
users_resultset: User
roles_relationship: roles
role_column: name
username_column: username
password_column: password
password_check: check_password
Interchange6::Routes:
cart:
template: checkout-giftinfo
navigation:
records: 20