From: Frédéric Péters Date: Sun, 29 Dec 2019 12:51:55 +0000 (+0100) Subject: settings: use postgresql X-Git-Tag: v2022~62 X-Git-Url: https://git.0d.be/?p=chloro.git;a=commitdiff_plain;h=3267c39ab3b79af2ca3847a3f3e5d362137232bd settings: use postgresql --- diff --git a/chloro/settings.py b/chloro/settings.py index 3fb408a..0f15e87 100644 --- a/chloro/settings.py +++ b/chloro/settings.py @@ -73,7 +73,7 @@ WSGI_APPLICATION = 'chloro.wsgi.application' # https://docs.djangoproject.com/en/1.11/ref/settings/#databases DATABASES = { - 'default': {'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),} + 'default': {'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'chloro',}, }