-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
49 lines (43 loc) · 1.02 KB
/
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
[buildout]
parts =
django
django-fcgi
django-gunicorn
media
find-links =
http://pypi.iqpp.de/
[media]
recipe = svetlyak40wt.recipe.symlinks
path = project/media
files =
Django://django/contrib/admin/media admin
django-lfs://lfs/static lfs
django-lfstheme://lfstheme/static lfstheme
django-lfc://lfc/static lfc
lfc-theme://lfc_theme/static lfc_theme
[django-fcgi]
recipe = collective.recipe.template
port = 8000
input = ${buildout:directory}/misc/conf/django-fcgi.sh.in
output = ${buildout:directory}/bin/django-fcgi.sh
[django-gunicorn]
recipe = collective.recipe.template
port = 8000
workers = 4
input = ${buildout:directory}/misc/conf/django-gunicorn.sh.in
output = ${buildout:directory}/bin/django-gunicorn.sh
[django]
recipe = djangorecipe
version = 1.1.2
eggs =
django-lfs == 0.5.0b6
django-lfc == 1.0.2
lfc_blog == 1.0
Pillow
gunicorn
project = project
settings=settings
extra-paths =
${buildout:directory}/parts
${buildout:directory}/project
urls = project/urls