Initial commit

This commit is contained in:
Alexandre Iooss 2021-09-22 17:52:19 +02:00
commit 76ed93ff33
8 changed files with 246 additions and 0 deletions

16
photo21/wsgi.py Normal file
View file

@ -0,0 +1,16 @@
"""
WSGI config for photo21 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/2.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'photo21.settings')
application = get_wsgi_application()