Skip to content

Instantly share code, notes, and snippets.

@wozozo
Created May 4, 2011 16:00
Show Gist options
  • Select an option

  • Save wozozo/955468 to your computer and use it in GitHub Desktop.

Select an option

Save wozozo/955468 to your computer and use it in GitHub Desktop.
buildout.cfg
[buildout]
parts = manage
parts =
basedirs
manage
PIL
django
nginxconf
develop-dir=./parts
[basedirs]
recipe = z3c.recipe.mkdir
paths =
static/room_images
static/profile_images
static/tmp
[manage]
recipe = zc.recipe.egg
eggs =
MySQL-python==1.2.3
django-extensions
python-memcached==1.45
Werkzeug
ipython==0.10
meinheld
gunicorn
jogging
django-social-auth
interpreter = python
[PIL]
recipe = zc.recipe.egg
eggs = PIL==1.1.6
find-links = http://dist.repoze.org/
[django]
recipe = djangorecipe
version = 1.2.5
settings = settings_dev
project = project
eggs =
${manage:eggs}
${PIL:eggs}
extra-paths =
${buildout:directory}/project
[nginxconf]
recipe = z3c.recipe.filetemplate
files = conf/nginx_dev.conf
host = dev.example.com
[buildout]
parts = manage
parts =
basedirs
manage
PIL
django
nginxconf
extends = buildout.cfg
[django]
recipe = djangorecipe
version = 1.2.5
settings = settings_production
project = project
eggs =
${manage:eggs}
${PIL:eggs}
extra-paths =
${buildout:directory}/project
[nginxconf]
recipe = z3c.recipe.filetemplate
files = conf/nginx.conf
host = example.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment