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/asgi.py Normal file
View File

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