view 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
line wrap: on
line source
from settings.base import *
from settings.local import *

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': 'test.db',
    },
}