From: Matthijs Kooijman Date: Mon, 18 Oct 2010 10:36:15 +0000 (+0200) Subject: settings: Use an sqlite3 database for now. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fdorestad-bookings.git;a=commitdiff_plain;h=9e5aa45049a4f28686dd94f33a2ef138c8600bb8 settings: Use an sqlite3 database for now. --- diff --git a/settings.py b/settings.py index dabd33b..e3d71db 100644 --- a/settings.py +++ b/settings.py @@ -13,8 +13,8 @@ ADMINS = ( MANAGERS = ADMINS -DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. -DATABASE_NAME = '' # Or path to database file if using sqlite3. +DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. +DATABASE_NAME = 'db.db' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.