-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevelopment.ini
More file actions
55 lines (42 loc) · 1.03 KB
/
Copy pathdevelopment.ini
File metadata and controls
55 lines (42 loc) · 1.03 KB
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
[app:main]
use = egg:pyramidpypi
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
pyramid.includes = pyramid_debugtoolbar
mako.directories = pyramidpypi:templates
mako.module_directory = %(here)s/data/templates
mako.default_filters = h
# path where the egg files are located on the hdd
egg_path = %(here)s/eggs/
# url path where to download the eggs
egg_url = /eggs/
[server:main]
use = egg:waitress#main
host = 127.0.0.1
port = 6543
# Begin logging configuration
[loggers]
keys = root, pyramidpypi
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_pyramidpypi]
level = DEBUG
handlers =
qualname = pyramidpypi
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
# End logging configuration