fix: bigger list item for group names
[jelmer/swat.git] / development.ini
1 #
2 # swat - Pylons development environment configuration
3 #
4 # The %(here)s variable will be replaced with the parent directory of this file
5 #
6 [DEFAULT]
7 debug = true
8 # Uncomment and replace with the address which should receive any error reports
9 #email_to = you@yourdomain.com
10 smtp_server = localhost
11 error_email_from = paste@localhost
12
13 [server:main]
14 use = egg:Paste#http
15 host = 127.0.0.1
16 port = 5000
17
18 [app:main]
19 use = egg:swat
20 full_stack = true
21 static_files = true
22 lang = en
23
24 #
25 # repoze.who
26 #
27 #who.config_file = %(here)s/who.ini
28 authkit.setup.method = forward,cookie
29
30 authkit.forward.signinpath = /authentication/login
31 authkit.cookie.signoutpath = /authentication/logout
32 authkit.cookie.secret = cookie secret
33 authkit.cookie.name = authkit_cookie_name
34 #authkit.cookie.params = expires: 3600
35
36
37 #authkit.forward.signoutpath = /authentication/logout
38
39 yaml.config = %(here)s/swat/config/yaml
40
41 cache_dir = %(here)s/data
42 beaker.session.key = swat
43 beaker.session.secret = somesecret
44
45 # If you'd like to fine-tune the individual locations of the cache data dirs
46 # for the Cache data, or the Session saves, un-comment the desired settings
47 # here:
48 #beaker.cache.data_dir = %(here)s/data/cache
49 #beaker.session.data_dir = %(here)s/data/sessions
50
51 # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
52 # Debug mode will enable the interactive debugging tool, allowing ANYONE to
53 # execute malicious code after an exception is raised.
54 #set debug = false
55
56
57 # Logging configuration
58 [loggers]
59 keys = root, routes, swat
60
61 [handlers]
62 keys = console
63
64 [formatters]
65 keys = generic
66
67 [logger_root]
68 level = INFO
69 handlers = console
70
71 [logger_routes]
72 level = INFO
73 handlers =
74 qualname = routes.middleware
75 # "level = DEBUG" logs the route matched and routing variables.
76
77 [logger_swat]
78 level = DEBUG
79 handlers =
80 qualname = swat
81
82 [handler_console]
83 class = StreamHandler
84 args = (sys.stderr,)
85 level = NOTSET
86 formatter = generic
87
88 [formatter_generic]
89 format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
90 datefmt = %H:%M:%S