Mercurial > public > bravenewsurf
changeset 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 | 01740aa4a6b9 |
children | 2de51cc51d3a |
files | bns_website/settings/bob.py |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /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