Skip to content

Commit

Permalink
commas from hell
Browse files Browse the repository at this point in the history
  • Loading branch information
dethos committed Aug 29, 2024
1 parent 98c52e3 commit ceb1c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hawkpost/settings/development.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
if 'DB_HOST' in os.environ:
DATABASES['default']['HOST'] = os.environ.get("DB_HOST", "localhost")
DATABASES['default']['PORT'] = os.environ.get("DB_PORT", 5432)
DATABASES['default']['USER'] = os.environ.get("DB_USER" "postgres")
DATABASES['default']['USER'] = os.environ.get("DB_USER", "postgres")
DATABASES['default']['NAME'] = os.environ.get("DB_NAME", "hawkpost_dev")

if 'DB_PASSWORD' in os.environ:
Expand Down

0 comments on commit ceb1c9c

Please sign in to comment.