This repository was archived by the owner on Jan 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.ini
83 lines (63 loc) · 1.68 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
73
74
75
76
77
78
79
80
81
82
83
[coyote]
# These queue to runner mappings (<queue_name>:<runner_name>) propulate the
# queues list to run through during runtime.
queue-mappings =
cnx_any_latex_pdf:legacy-print
cnx_any_latex_offline:offlinezip
[amqp]
host = localhost
port = 5672
user = guest
password = guest
[runner:legacy-print]
# This is the LaTex PDF generator.
runner = python!rbitext.legacy:make_print
output-dir = /mnt/hgfs/tmp
python = /home/pumazi/py24-env/bin/python
print-dir = /home/pumazi/rbit-env/Products.RhaptosPrint/Products/RhaptosPrint/printing
[runner:epub]
runner = python!rbitext.epub:make_epub
output-dir = /mnt/hgfs/tmp
oer.exports-dir = /home/pumazi/pybit-env/oer.exports
[runner:pdf]
# This is the PrinceXML PDF generator.
runner = python!rbitext.pdf:make_pdf
output-dir = /mnt/hgfs/tmp
oer.exports-dir = /home/pumazi/pybit-env/oer.exports
#pdf-generator = /usr/local/bin/wkhtmltopdf
pdf-generator = /usr/local/bin/prince
[runner:completezip]
runner = python!rbitext.legacy:make_completezip
output-dir = /mnt/hgfs/tmp
username = user1
password = user1
path-to-content = /plone/content
[runner:offlinezip]
runner = python!rbitext.legacy:make_offlinezip
output-dir = /mnt/hgfs/tmp
oer.exports-dir = /home/pumazi/oer.exports
cnx-buildout-dir = /home/pumazi/cnx-buildout
python-env = /home/pumazi/py24-env
###
# logging configuration
###
[loggers]
keys = root, coyote
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_coyote]
level = DEBUG
handlers =
qualname = coyote
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s