-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
56 lines (49 loc) · 908 Bytes
/
buildout.cfg
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
[buildout]
develop = .
parts =
app
mkdirs
mywsgiapp
celery
test
newest = false
[celery]
recipe = collective.recipe.celery
broker-transport = redis.transport.Transport
broker-host = redis://localhost
result-backend = redis
result-dburi = redis://localhost
imports = revot.main.tasks
eggs =
kombu-redis
revot
[mywsgiapp]
recipe = collective.recipe.modwsgi
eggs = revot
mysql-python
gunicorn
PasteDeploy
Paste
PasteScript
config-file = ${buildout:directory}/production.ini
[server]
host = 127.0.0.1
port = 5000
logfiles = ${buildout:directory}/var/log
[app]
recipe = zc.recipe.egg
eggs = revot
mysql-python
gunicorn
PasteDeploy
Paste
PasteScript
interpreter = python-console
[mkdirs]
recipe = z3c.recipe.mkdir
paths =
${server:logfiles}
[test]
recipe = pbp.recipe.noserunner
eggs = revot
defaults = -v