forked from dakra/pyramidpypi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.ini
72 lines (57 loc) · 1.53 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
[app:main]
use = egg:pyramidpypi
#filter-with = eggs-prefix
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/package_cache/
# url path where to download the eggs
egg_url = /eggs/
# enable package upload to the server
enable_upload = true
# pypi server to use for downloading not found packages
pypi_server = https://pypi.python.org
# fallback to proxy when package is not found
proxy_mode = true
# force package version listing from remote pypi server. When
# this is disabled only download local packages will be exposed as available
# versions
force_remote_package_index = true
[filter:eggs-prefix]
use = egg:PasteDeploy#prefix
#scheme = https
prefix = /eggs
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543
# Begin logging configuration
[loggers]
keys = root, pyramidpypi
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = DEBUG
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