Added Django startproject template for worldtour project and asiatoursagency app

This commit is contained in:
2025-05-29 14:01:07 -04:00
parent 31a478783a
commit 2e6b731e95
13 changed files with 216 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
"""
WSGI config for worldtour 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', 'worldtour.settings')
application = get_wsgi_application()