Skip to content

Commit

Permalink
feat: adding debug toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
yokwejuste committed Aug 18, 2024
1 parent 28dd1d0 commit 190d2e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website_api/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@

DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"ENGINE": "django.db.backends.postgresql_psycopg2",
"NAME": os.getenv("DB_NAME"),
"USER": os.getenv("DB_USER"),
"PASSWORD": os.getenv("DB_PASSWORD"),
"HOST": os.getenv("DB_HOST"),
"PORT": os.getenv("PORT"),
"PORT": os.getenv("DB_PORT"),
}
}

Expand Down

0 comments on commit 190d2e6

Please sign in to comment.