From 85f97b6322eacc6fa89788aba7998fc485f85cfc Mon Sep 17 00:00:00 2001 From: Marcin Koziej Date: Thu, 19 Jan 2012 16:58:04 +0100 Subject: [PATCH] oops sorry; commited local mysqldb setup --- wolnelektury/settings.py | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index 851860f28..01f5737db 100644 --- a/wolnelektury/settings.py +++ b/wolnelektury/settings.py @@ -16,19 +16,14 @@ MANAGERS = ADMINS DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': 'wl', # Or path to database file if using sqlite3. - 'USER': 'wl', # Not used with sqlite3. - 'PASSWORD': 'test', # Not used with sqlite3. - 'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3. - 'PORT': '', # Set to empty string for default. Not used with sqlite3. + 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': path.join(PROJECT_DIR, 'dev.db'), # Or path to database file if using sqlite3. + 'USER': '', # Not used with sqlite3. + 'PASSWORD': '', # Not used with sqlite3. + 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. } } -DATABASE_OPTIONS = { - "init_command": "SET storage_engine=INNODB DEFAULT CHARSET=utf8", -} - # Local time zone for this installation. Choices can be found here: # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name -- 2.20.1