Fixed database access issues, and installer question list

This commit is contained in:
Mike Young
2019-12-31 21:13:52 -05:00
parent a19401c1aa
commit da133c4197
8 changed files with 37 additions and 23 deletions

View File

@@ -107,8 +107,8 @@ DATABASES = {
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": CONFIG.user,
"PASSWORD": CONFIG.password,
"NAME": CONFIG.DATABASE,
"PASSWORD": CONFIG.PASSWORD,
}
}