python - Deploying django app on heroku foreman error -
python - Deploying django app on heroku foreman error -
im trying run django app on heroku server. empty django app structure
- hellodjango/ - manage.py - procfile - requirements.txt - venv/
in proc file:
web: gunicorn hellodjango.wsgi
hellodjango/wsgi.py:
from django.core.wsgi import get_wsgi_application dj_static import cling application = cling(get_wsgi_application())
i run command:
source venv/bin/activate foreman start
and errors:
16:57:12 web.1 | started pid 3001 16:57:13 web.1 | exited code 3 16:57:13 scheme | sending sigterm processes
python django heroku foreman
Comments
Post a Comment