Skip to content

Commit

Permalink
removing the test postgres data from the sample app
Browse files Browse the repository at this point in the history
  • Loading branch information
guel-codes committed Jul 17, 2024
1 parent f54d8c9 commit cbf9bd2
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions sample_taggit/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,9 @@
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases

DATABASES = {
# "default": {
# "ENGINE": "django.db.backends.sqlite3",
# "NAME": BASE_DIR / "db.sqlite3",
# }
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "sample_taggit_app",
"USER": "postgres",
"PASSWORD": "postgres",
"HOST": "localhost",
"PORT": "5432",
"ENGINE": "django.db.backends.sqlite3",
"NAME": BASE_DIR / "db.sqlite3",
}
}

Expand Down

0 comments on commit cbf9bd2

Please sign in to comment.