-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildout.cfg
More file actions
47 lines (36 loc) · 1 KB
/
buildout.cfg
File metadata and controls
47 lines (36 loc) · 1 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
[buildout]
extends =
https://raw.github.com/ploneintranet/ploneintranet.suite/master/buildout.cfg
parts +=
zeo-server
scripts
eggs +=
SQLAlchemy
celery[sqlalchemy]
package-name = ploneintranet.async
extensions = mr.developer
auto-checkout =
collective.celery
sources-dir = source-eggs
[sources]
collective.celery = git git@github.com:collective/collective.celery branch=ploneintranet-async-improvements
[zeo-server]
recipe = plone.recipe.zeoserver
zeo-address = 8100
[instance]
environment-vars +=
CELERY_ALWAYS_EAGER True
CELERY_IMPORTS ('ploneintranet.async.demo.tasks',)
# BROKER_URL sqla+sqlite:///${buildout:directory}/celerydb.sqlite?timeout=30
# CELERY_RESULT_BACKEND db+sqlite:///${buildout:directory}/celeryresults.sqlite?timeout=30
BROKER_URL sqla+sqlite://
CELERY_RESULT_BACKEND db+sqlite://
zeo-client = on
zeo-address = ${zeo-server:zeo-address}
shared-blob = on
[scripts]
eggs = ${instance:eggs}
[test]
eggs +=
SQLAlchemy
collective.celery[test]