From 3267c39ab3b79af2ca3847a3f3e5d362137232bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sun, 29 Dec 2019 13:51:55 +0100 Subject: [PATCH] settings: use postgresql --- chloro/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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',}, } -- 2.39.2