Configure settings: add kitchen app, DRF, timezone, allowed hosts

This commit is contained in:
Caine
2026-04-01 22:48:28 +01:00
parent 40cc3de3e4
commit 5c6f7ead8f
12 changed files with 334 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""
ASGI config for food_project project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.2/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'food_project.settings')
application = get_asgi_application()