Switched Django to postgresql

This commit is contained in:
Mike Young
2019-12-01 11:54:14 -05:00
parent e34411f49e
commit f9e4c5a72b

View File

@@ -85,8 +85,11 @@ WSGI_APPLICATION = "frontend.wsgi.application"
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
"ENGINE": "django.db.backends.postgresql",
# "ENGINE": "django.db.backends.sqlite3",
"NAME": "pyshelf",
"PASSWORD": "",
# "NAME": os.path.join(BASE_DIR, "db.sqlite3"),
}
}