Skip to content
Draft
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
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ services:
<<: *base_server_setup
ports:
- 8000:8000
command: python manage.py runserver 0.0.0.0:8000
- 5678:5678
# command: python manage.py runserver 0.0.0.0:8000
command: python -Xfrozen_modules=off -m debugpy --wait-for-client --listen 0.0.0.0:5678 manage.py runserver 0.0.0.0:8000

# For development only
celery:
Expand Down
4 changes: 2 additions & 2 deletions main/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def parse_domain(*env_keys: str) -> str:
"reversion",
"reversion_compare",
# Debug
"debug_toolbar",
# "debug_toolbar",
# GIS
"django.contrib.gis",
]
Expand Down Expand Up @@ -298,7 +298,7 @@ def parse_domain(*env_keys: str) -> str:
# GRAPHENE = {"SCHEMA": "api.schema.schema"}

MIDDLEWARE = [
"debug_toolbar.middleware.DebugToolbarMiddleware",
# "debug_toolbar.middleware.DebugToolbarMiddleware",
"django.middleware.security.SecurityMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"corsheaders.middleware.CorsMiddleware",
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dependencies = [
"openpyxl==3.0.10",
"requests==2.32.2",
"tabula-py==1.2.0",
"typing==3.6.2",
# "typing==3.6.2",
# urllib3=1.26.12",
"xmltodict==0.11.0",
"xhtml2pdf==0.2.15",
Expand All @@ -92,6 +92,7 @@ dev = [
"pytest-ordering",
"pytest-django",
"snapshottest==0.6.0",
"debugpy==1.8.14",
"django-debug-toolbar==4.1.0",
"django-stubs",
]
Expand Down
34 changes: 23 additions & 11 deletions uv.lock

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

Loading