One solution is to add an extra import at the bottom of your
settings.py:
try:
from localsettings import *
except ImportError:
pass
Then put localsettings.py in your svn:ignore, and override whatever
settings you need to on a per-installation basis.
On Jul 24, 2007, at 8:41 AM, go
Hey everyone,
I'm about to tackle an API that supports multiple response formats
using serializers. I realize that the API (as simple as it is) is
subject to change, but it seems like a totally sensible pattern for
what I'd like to do. One problem I've come across already is that the
base
at 12:41 PM, Shawn Allen wrote:
> Hey everyone,
>
> I'm about to tackle an API that supports multiple response formats
> using serializers. I realize that the API (as simple as it is) is
> subject to change, but it seems like a totally sensible pattern for
> what I'd
3 matches
Mail list logo