2020-12-10 at=error code=H14 desc="No web processes running"

Pesan error

at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico"

solusi:

tambahkan module django-heroku pada requirements

Add the following import statement to the top of settings.py:

import django_heroku

Then add the following to the bottom of settings.py:

# Activate Django-Heroku.
django_heroku.settings(locals())

Install di lokal dan tambahkan di requirements

pip3 install gunicorn

buat file Procfile di base repoberisi

web: gunicorn personal_portfolio.wsgi

Referensi: https://devcenter.heroku.com/articles/django-app-configuration

Last updated

Was this helpful?