Makefile'dan bo'lak qismlar o'chirildi, docker-compose va Dockerfile'ga yangiliklar qo'shildi, yangi payment/api ilovasi yaratildi.

This commit is contained in:
A'zamov Samandar
2025-04-19 16:28:06 +05:00
parent 5d27809f17
commit e5b57671c8
21 changed files with 239 additions and 8 deletions

16
payment/config/asgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
ASGI config for config 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.1/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
application = get_asgi_application()