]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blob - wradmin/development.ini
Replaced python2.5 with python2.6
[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 [server:main]
14 use = egg:Paste#http
15 host = 127.0.0.1
16 port = 5000
17
18 [app:main]
19 use = egg:wradmin
20 full_stack = true
21 static_files = true
22
23 cache_dir = %(here)s/data
24 beaker.session.key = wradmin
25 beaker.session.secret = somesecret
26
27 authkit.setup.method = basic
28 authkit.basic.realm = Winterrodeln Admin
29 authkit.basic.authenticate.user.type = wradmin.lib.mediawiki:MediaWikiUsers
30 authkit.basic.authenticate.user.data = 
31
32 # If you'd like to fine-tune the individual locations of the cache data dirs
33 # for the Cache data, or the Session saves, un-comment the desired settings
34 # here:
35 #beaker.cache.data_dir = %(here)s/data/cache
36 #beaker.session.data_dir = %(here)s/data/sessions
37
38 # SQLAlchemy database URL
39 sqlalchemy.url = mysql://philipp@localhost:3306/winterrodeln_wiki?charset=utf8
40 # necessary for mySQL databases
41 sqlalchemy.pool_recycle = 3600
42 # sqlalchemy.echo_pool = 1
43 # sqlalchemy.echo=true
44
45 # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
46 # Debug mode will enable the interactive debugging tool, allowing ANYONE to
47 # execute malicious code after an exception is raised.
48 #set debug = false
49
50
51 # Logging configuration
52 [loggers]
53 keys = root, routes, wradmin
54
55 [handlers]
56 keys = console, file
57
58 [formatters]
59 keys = generic
60
61 [logger_root]
62 level = INFO
63 # handlers = file
64 handlers = console
65
66 [logger_routes]
67 level = INFO
68 handlers =
69 qualname = routes.middleware
70 # "level = DEBUG" logs the route matched and routing variables.
71
72 [logger_wradmin]
73 level = DEBUG
74 handlers =
75 qualname = wradmin
76
77 [handler_console]
78 class = StreamHandler
79 args = (sys.stderr,)
80 level = NOTSET
81 formatter = generic
82
83 [handler_file]
84 class = FileHandler
85 args = ('/tmp/pylons_application.log', 'a')
86 level = INFO
87 formatter = generic
88
89 [formatter_generic]
90 format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
91 datefmt = %H:%M:%S