seems the procfile may be wrong

This commit is contained in:
brad stein 2018-10-24 23:28:57 -05:00
parent 5280a2aeee
commit f6d9113893

View File

@ -0,0 +1,12 @@
"""
ASGI entrypoint. Configures Django and then runs the application
defined in the ASGI_APPLICATION setting.
"""
import os
import django
from channels.routing import get_default_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ChannelsDrawShareSite.settings")
django.setup()
application = get_default_application()