django: create project/app
This commit is contained in:
parent
1d0ef191c6
commit
30fb85eeb8
13 changed files with 202 additions and 0 deletions
15
itpspapi/wsgi.py
Normal file
15
itpspapi/wsgi.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
"""WSGI config for itpspapi 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/6.0/howto/deployment/wsgi/
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "itpspapi.settings")
|
||||
|
||||
application = get_wsgi_application()
|
||||
Loading…
Add table
Add a link
Reference in a new issue