-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelop.ini
More file actions
70 lines (58 loc) · 1.22 KB
/
develop.ini
File metadata and controls
70 lines (58 loc) · 1.22 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[DEFAULT]
debug = true
[app:rstlibrary]
use = egg:rstlibrary#app
reload_templates = true
debug_authorization = false
debug_notfound = false
src_path = file:/%(here)s/../../var/vslib
#shove stores
store_url = file:/%(here)s/../../var/store
cache_url = memlru://
database = %(here)s/../../var/library.idx
max_entries = 3
# fs content
content_dir = %(here)s/../../var/fscontent
# invalidate
invalidate_url = http://localhost:6543/invalidate
# vsbroker queue
broker_url = 'http://127.0.0.1:7007/get'
[filter:profile]
use = egg:repoze.profile#profile
log_filename = vslib.profile
cachegrind_filename = cachegrind.out.vslib
discard_first_request = true
path = /__profile__
flush_at_shutdown = true
[pipeline:main]
pipeline =
egg:weberror#evalerror
egg:Paste#httpexceptions
rstlibrary
#;egg:Paste#evalerror
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 6543
use_threadpool = true
threadpool_workers = 4
threadpool_spawn_if_under = 3
[loggers]
keys=root
[handlers]
keys=hand
[formatters]
keys=form
[logger_root]
level=DEBUG
handlers=hand
[handler_hand]
class=StreamHandler
level=NOTSET
formatter=form
args=(sys.stdout,)
stream=sys.stdout
[formatter_form]
; format=F1 %(asctime)s %(levelname)s %(message)s
format=%(message)s
datefmt=