firma_backend products and contact section datas

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-12-02 20:03:33 +05:00
commit b4366eaaba
25 changed files with 307 additions and 0 deletions

16
portfolio_admin/wsgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
WSGI config for portfolio_admin project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'portfolio_admin.settings')
application = get_wsgi_application()