I've got a Django project that has multiple settings files (www site, mobile site, an API..) and I recently got around to cutting the config/deployment over to buildout. Unfortunately, the only way I can get djangorecipe to generate separate WSGI files for me is to specify each site as its own block, which creates a whole separate django lib for each one.
I suppose that's not really a problem per se, and a workaround would be to manually create the WSGI files...but if there was a way to have that all happen by buildout instead and share the same django lib, that would be ideal.
Here's what I have now, which creates separate Django installs:
[buildout]
parts =
python
web
mobile
<etc...>
[python]
recipe = zc.recipe.egg
eggs = <etc...>
[web]
recipe = djangorecipe
interpreter = python
version = trunk
project = proj
settings = web_settings
eggs = ${python:eggs}
wsgi = true
[mobile]
recipe = djangorecipe
interpreter = python
version = ${web:version}
project = ${web:project}
settings = mobile_settings
eggs = ${python:eggs}
wsgi = true
<etc...>
Since it is not possible to set environment variable in apache config and retrieve it in wsgi script (explained in: mod-wsgi wiki) it seems that the most elegant solution is to have separate wsgi scripts.
(There was a related discussion on SO: Django - Can't pass Environment Variable to Apache/Passenger on the WSGI Interface)
Now if you are about to create wsgi scripts manually you will have to deal with sys.path manually. So it seems that to it is easier to have few sections of django.recipe.
It is also possible not to use django-recipe at all. At least I prefer this because then I have full freedom to setup my wsgi/manage scripts. And it is not that hard to configure buildout in a way that it will wrap your manually written scripts into bin folder with sys.path automatically configured.
Here is how to achieve it:
Create your wsgi, manage scripts manually at
myproject.scrpits.*
as described in django documentation. However, wrap the "active" part to adef main():
method. Then, your scripts can be used as modules.Create proper
setup.py
script for your project. It will install scripts which you created in the first step. Entry-points part is important here:Configure buildout. python:scripts is important here:
Now buildout will generate scripts in bin folder which you defined in steps 1-2.