Skip to content

Commit

Permalink
fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladless committed Oct 15, 2023
1 parent 5ed9c27 commit 6ea7e60
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions adaptive_hockey_federation/adaptive_hockey_federation/asgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

from django.core.asgi import get_asgi_application

os.environ.setdefault('DJANGO_SETTINGS_MODULE',
'adaptive_hockey_federation.settings')
os.environ.setdefault(
'DJANGO_SETTINGS_MODULE',
'adaptive_hockey_federation.settings'
)

application = get_asgi_application()
6 changes: 4 additions & 2 deletions adaptive_hockey_federation/adaptive_hockey_federation/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

from django.core.wsgi import get_wsgi_application

os.environ.setdefault('DJANGO_SETTINGS_MODULE',
'adaptive_hockey_federation.settings')
os.environ.setdefault(
'DJANGO_SETTINGS_MODULE',
'adaptive_hockey_federation.settings'
)

application = get_wsgi_application()
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ readme = "README.md"
python = "^3.11"
django = "^4.2.6"
gunicorn = "^21.2.0"
django-stubs = "^4.2.4"

[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
Expand All @@ -19,6 +18,7 @@ flake8 = "^6.1.0"
flake8-isort = "^6.1.0"
mypy = "^1.5.1"
flake8-django = "^1.4"
django-stubs = "^4.2.4"


[tool.isort]
Expand Down

0 comments on commit 6ea7e60

Please sign in to comment.