comparison 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
comparison
equal deleted inserted replaced
10:01740aa4a6b9 13:40d86ae48db1
1 from settings.base import *
2 from settings.local import *
3
4 DATABASES = {
5 'default': {
6 'ENGINE': 'django.db.backends.sqlite3',
7 'NAME': 'test.db',
8 },
9 }