forked from mozilla/scrumbugz
-
Notifications
You must be signed in to change notification settings - Fork 1
/
production.cfg
49 lines (41 loc) · 1.04 KB
/
production.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
[buildout]
extends = buildout.cfg
parts +=
supervisor
supervisor-config
apache-config
redis-config
cron-supervisord
eggs +=
redis
gunicorn
eventlet
[manage]
recipe = djangorecipe
project = scrumbugz
projectegg = scrumbugz
settings = settings
test = scrumbugz
eggs = ${buildout:eggs}
wsgi = false
fcgi = false
extra-paths = ${buildout:extra-paths}
[supervisor]
recipe = zc.recipe.egg
[supervisor-config]
recipe = collective.recipe.template
input = ${buildout:directory}/etc/supervisord.conf.in
output = ${buildout:directory}/parts/etc/supervisord.conf
port = 7001
[apache-config]
recipe = collective.recipe.template
input = ${buildout:directory}/etc/apache.conf.in
output = ${buildout:directory}/parts/etc/apache.conf
[redis-config]
recipe = collective.recipe.template
input = ${buildout:directory}/etc/redis.conf.in
output = ${buildout:directory}/parts/etc/redis.conf
[cron-supervisord]
recipe = z3c.recipe.usercrontab
times = @reboot
command = ${buildout:directory}/bin/supervisord