Skip to content

Commit

Permalink
define DATABASES default ENGINE within settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nworbnhoj committed Jan 10, 2025
1 parent d05ed2d commit c4703cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qwikgame/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@

DATABASES = {
'default': {
"ENGINE": os.getenv("DATABASE_ENGINE","error: set environ variable DATABASE_ENGINE"),
"ENGINE": "django.db.backends.postgresql",
'NAME': os.getenv('DATABASE_NAME','error: set environ variable DATABASE_NAME'),
'USER': os.getenv('DATABASE_USER','error: set environ variable DATABASE_USER'),
'PASSWORD': os.getenv('DATABASE_PASSWORD','error: set environ variable DATABASE_PASSWORD'),
Expand Down

0 comments on commit c4703cb

Please sign in to comment.