From cccd076a3b99c5125f10e98b1e78aba9d8e3b767 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 14 May 2015 01:22:20 +0200 Subject: [PATCH] update db to postgres Signed-off-by: Nico Schottelius --- dynamicweb/settings.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dynamicweb/settings.py b/dynamicweb/settings.py index 902dbd0b..c94e3b8b 100644 --- a/dynamicweb/settings.py +++ b/dynamicweb/settings.py @@ -79,12 +79,11 @@ WSGI_APPLICATION = 'dynamicweb.wsgi.application' DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'app', } } - # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/