Skip to content

Commit

Permalink
Provide default port for website for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
amakarudze committed Jun 9, 2024
1 parent bc366d8 commit 2192de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
DB_HOST = os.environ.get("DATABASE_HOST")
DB_PASSWORD = os.environ.get("DATABASE_PASSWORD")
DB_NAME = os.environ.get("DATABASE_NAME")
DB_PORT = os.environ.get("DATABASE_PORT")
DB_PORT = os.environ.get("DATABASE_PORT", 5432)

DATABASES = {
"default": dj_database_url.config(
Expand Down

0 comments on commit 2192de1

Please sign in to comment.