Working on Heroku integration.

master
Nick Sergeant 2014-10-20 11:00:30 -04:00
parent fcb6bfa331
commit e20ed191c1
2 changed files with 15 additions and 0 deletions

1
Procfile Normal file
View File

@ -0,0 +1 @@
web: gunicorn hellodjango.wsgi --log-file -

14
snipt.wsgi Normal file
View File

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