Fix name project and Add Heroku deploy

This commit is contained in:
Andros Fenollosa
2021-07-14 17:17:52 +02:00
parent a16079c308
commit c877ddbcc9
8 changed files with 6 additions and 8 deletions

16
project/wsgi.py Normal file
View File

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