forked from Pylons/cartouche
-
Notifications
You must be signed in to change notification settings - Fork 0
/
development.ini
115 lines (103 loc) · 2.68 KB
/
development.ini
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[app:cartouche]
use = egg:cartouche#main
reload_templates = true
debug_authorization = false
debug_notfound = false
debug_templates = true
default_locale_name = en
configure_zcml = homepage.zcml
zodb_uri = file://%(here)s/var/Data.fs?connection_cache_size=20000
cartouche.from_addr = [email protected]
cartouche.after_edit_url = /
[app:cartouche_autologin]
use = egg:cartouche#main
reload_templates = true
debug_authorization = false
debug_notfound = false
debug_templates = true
default_locale_name = en
configure_zcml = with_autologin.zcml
zodb_uri = file://%(here)s/var/Data.fs?connection_cache_size=20000
cartouche.from_addr = [email protected]
cartouche.after_edit_url = /
[app:cartouche_testing]
use = egg:cartouche#main
reload_templates = true
debug_authorization = true
debug_notfound = true
debug_templates = true
default_locale_name = en
configure_zcml = testing.zcml
zodb_uri = file://%(here)s/var/Data.fs?connection_cache_size=20000
cartouche.from_addr = [email protected]
cartouche.after_edit_url = /
[app:cartouche_testing_autologin]
use = egg:cartouche#main
reload_templates = true
debug_authorization = true
debug_notfound = true
debug_templates = true
default_locale_name = en
configure_zcml = testing_with_autologin.zcml
zodb_uri = file://%(here)s/var/Data.fs?connection_cache_size=20000
cartouche.from_addr = [email protected]
cartouche.after_edit_url = /
[app:cartouche_no_mail]
use = egg:cartouche#main
reload_templates = true
debug_authorization = false
debug_notfound = false
debug_templates = true
default_locale_name = en
configure_zcml = no_mail.zcml
zodb_uri = file://%(here)s/var/Data.fs?connection_cache_size=20000
cartouche.from_addr = [email protected]
cartouche.after_edit_url = /
[filter:who]
use = egg:repoze.who#config
config_file = who.ini
log_file = stdout
[filter:who_testing]
use = egg:repoze.who#config
config_file = who_testing.ini
log_file = stdout
log_level = debug
[pipeline:main]
pipeline =
egg:WebError#evalerror
egg:repoze.zodbconn#closer
who
egg:repoze.tm2#tm
cartouche
[pipeline:autologin]
pipeline =
egg:WebError#evalerror
egg:repoze.zodbconn#closer
who
egg:repoze.tm2#tm
cartouche_autologin
[pipeline:no_mail]
pipeline =
egg:WebError#evalerror
egg:repoze.zodbconn#closer
who
egg:repoze.tm2#tm
cartouche_no_mail
[pipeline:testing]
pipeline =
egg:WebError#evalerror
egg:repoze.zodbconn#closer
who_testing
egg:repoze.tm2#tm
cartouche_testing
[pipeline:testing_autologin]
pipeline =
egg:WebError#evalerror
egg:repoze.zodbconn#closer
who_testing
egg:repoze.tm2#tm
cartouche_testing_autologin
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 6543