Last active
August 29, 2015 14:02
-
-
Save mmulich/2d5e720d5853fb34c658 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[coyote] | |
# These queue to runner mappings (<queue_name>:<runner_name>) propulate the | |
# queues list to run through during runtime. | |
queue-mappings = | |
cnx_any_latex_completezip:completezip | |
[amqp] | |
host = localhost | |
port = 5672 | |
user = guest | |
password = guest | |
[runner:legacy-print] | |
# This is the LaTex PDF generator. | |
runner = python!roadrunners.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!roadrunners.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!roadrunners.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!roadrunners.legacy:make_completezip | |
output-dir = /mnt/hgfs/tmp | |
username = user1 | |
password = user1 | |
path-to-content = /plone/content | |
[runner:offlinezip] | |
runner = python!roadrunners.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, roadrunners | |
[handlers] | |
keys = console | |
[formatters] | |
keys = generic | |
[logger_root] | |
level = INFO | |
handlers = console | |
[logger_coyote] | |
level = DEBUG | |
handlers = console | |
qualname = coyote | |
[logger_roadrunners] | |
level = DEBUG | |
handers = console | |
qualname = roadrunners | |
[handler_console] | |
class = StreamHandler | |
args = (sys.stderr,) | |
level = NOTSET | |
formatter = generic | |
[formatter_generic] | |
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment