From fb6c409a9af5b8a686e977ee2251c359071e0ec3 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sun, 6 Nov 2022 21:30:07 -0700 Subject: Rework task system and fetching. I can taste how close follow is to working. --- takahe/settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'takahe/settings.py') 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", } } -- cgit v1.2.3