Skip to content

Commit

Permalink
FIX: default settings
Browse files Browse the repository at this point in the history
Signed-off-by: Segelzwerg <[email protected]>
  • Loading branch information
Segelzwerg committed Nov 23, 2024
1 parent ef60294 commit 493dc3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rechnung/asgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

from django.core.asgi import get_asgi_application

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'rechnung.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'rechnung.prod_settings')

application = get_asgi_application()
2 changes: 1 addition & 1 deletion rechnung/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

from django.core.wsgi import get_wsgi_application

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'rechnung.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'rechnung.prod_settings')

application = get_wsgi_application()

0 comments on commit 493dc3a

Please sign in to comment.