]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - wradmin/development.ini
Added fieldnames to error messages in Rodelbahnbox parsing
[philipp/winterrodeln/wradmin.git] / wradmin / development.ini
1 #
2 # wradmin - 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 # address which should receive any error reports
9 email_to = philipp.spitzer@winterrodeln.org
10 smtp_server = localhost
11 error_email_from = philipp.spitzer@winterrodeln.org
12
13 wikidbtype = mysql
14 wikidbserver = localhost
15 wikidbname = winterrodeln_wiki
16 wikidbuser = philipp
17 wikidbpassword =
18
19 [server:main]
20 use = egg:Paste#http
21 host = 127.0.0.1
22 port = 5000
23
24 [app:main]
25 use = egg:wradmin
26 full_stack = true
27 static_files = true
28
29 cache_dir = %(here)s/data
30 beaker.session.key = wradmin
31 beaker.session.secret = somesecret
32
33 # If you'd like to fine-tune the individual locations of the cache data dirs
34 # for the Cache data, or the Session saves, un-comment the desired settings
35 # here:
36 #beaker.cache.data_dir = %(here)s/data/cache
37 #beaker.session.data_dir = %(here)s/data/sessions
38
39 # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
40 # Debug mode will enable the interactive debugging tool, allowing ANYONE to
41 # execute malicious code after an exception is raised.
42 #set debug = false
43
44
45 # Logging configuration
46 [loggers]
47 keys = root, routes, wradmin
48
49 [handlers]
50 keys = console
51
52 [formatters]
53 keys = generic
54
55 [logger_root]
56 level = INFO
57 handlers = console
58
59 [logger_routes]
60 level = INFO
61 handlers =
62 qualname = routes.middleware
63 # "level = DEBUG" logs the route matched and routing variables.
64
65 [logger_wradmin]
66 level = DEBUG
67 handlers =
68 qualname = wradmin
69
70 [handler_console]
71 class = StreamHandler
72 args = (sys.stderr,)
73 level = NOTSET
74 formatter = generic
75
76 [formatter_generic]
77 format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
78 datefmt = %H:%M:%S