annotate bns_website/settings/bob.py @ 13:40d86ae48db1

A new bob settings for running the test server with sqlite instead of MySQL because setting up MySQL on my Mac isn't that appealing.
author Bob Mourlam <bob.mourlam@gmail.com>
date Sun, 30 Oct 2011 18:29:41 -0500
parents
children
rev   line source
bob@13 1 from settings.base import *
bob@13 2 from settings.local import *
bob@13 3
bob@13 4 DATABASES = {
bob@13 5 'default': {
bob@13 6 'ENGINE': 'django.db.backends.sqlite3',
bob@13 7 'NAME': 'test.db',
bob@13 8 },
bob@13 9 }