# HG changeset patch # User Bob Mourlam # Date 1320017381 18000 # Node ID 40d86ae48db19068e3988aab02d76ce321eabd2b # Parent 01740aa4a6b992b75483968041eded05562748a9 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. diff -r 01740aa4a6b9 -r 40d86ae48db1 bns_website/settings/bob.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bns_website/settings/bob.py Sun Oct 30 18:29:41 2011 -0500 @@ -0,0 +1,9 @@ +from settings.base import * +from settings.local import * + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': 'test.db', + }, +} \ No newline at end of file