Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .env.default
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
DB_USER=postgres
DB_NAME=postgres
DB_PW=postgres
DB_PORT=5432
# needs to be different than 5432 otherwise it'll clash with the jumphost ssh connection
DB_PORT=15432
DB_HOST=localhost
DB_NAME_TEST=postgres_test
DJANGO_SETTINGS_MODULE=config.settings_dev
Expand Down
2 changes: 1 addition & 1 deletion app/config/settings_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
},
]

WSGI_APPLICATION = 'config.wsgi.application'
WSGI_APPLICATION = 'wsgi.application'

# Database
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
Expand Down