summaryrefslogtreecommitdiffstats
path: root/takahe/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'takahe/settings.py')
-rw-r--r--takahe/settings.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/takahe/settings.py b/takahe/settings.py
index c3c8d38..78a8403 100644
--- a/takahe/settings.py
+++ b/takahe/settings.py
@@ -62,8 +62,9 @@ WSGI_APPLICATION = "takahe.wsgi.application"
DATABASES = {
"default": {
- "ENGINE": "django.db.backends.sqlite3",
- "NAME": BASE_DIR / "db.sqlite3",
+ "ENGINE": "django.db.backends.postgresql_psycopg2",
+ "NAME": "takahe",
+ "USER": "postgres",
}
}