Hello, I have been trying to deploy my web app for a few days, but it is giving the following error in the heroku logs:
2018-10-04T17:20:13.712363+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.6/site-packages/django/apps/registry.py", line 127, in check_apps_ready
2018-10-04T17:20:13.712365+00:00 app[web.1]: raise AppRegistryNotReady("Apps aren't loaded yet.")
2018-10-04T17:20:13.712366+00:00 app[web.1]: django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet.
2018-10-04T17:20:13.712368+00:00 app[web.1]: [2018-10-04 17:20:13 +0000] [11] [INFO] Worker exiting (pid: 11)
2018-10-04T17:20:13.837031+00:00 app[web.1]: [2018-10-04 17:20:13 +0000] [4] [INFO] Reason: Worker failed to boot.
2018-10-04T17:20:13.836872+00:00 app[web.1]: [2018-10-04 17:20:13 +0000] [4] [INFO] Shutting down: Master
2018-10-04T17:20:13.952332+00:00 heroku[web.1]: Process exited with status 3
2018-10-04T17:20:14.016616+00:00 heroku[web.1]: State changed from starting to crashed
2018-10-04T17:20:18.665123+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=smiles3d.herokuapp.com request_id=4926aca6-8da3-47d8-ab1a-0588f05b8807 fwd="200.156.91.194" dyno= connect= service= status=503 bytes= protocol=https
2018-10-04T17:20:18.958120+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=smiles3d.herokuapp.com request_id=5dafa9bd-8345-4024-9d4b-992faa26d8d8 fwd="200.156.91.194" dyno= connect= service= status=503 bytes= protocol=https
My files for deploy look like this:
Requirements.txt
-r requirements-dev.txt
gunicorn
psycopg2==2.7.5
Requirements-dev.txt
captcha==0.2.4
certifi==2018.8.24
chardet==3.0.4
dj-database-url==0.5.0
dj-static==0.0.6
Django==2.0
django-bootstrap-form==3.4
django-ranged-response==0.2.0
django-recaptcha==1.4.0
django-simple-captcha==0.5.9
django-widget-tweaks==1.4.2
idna==2.7
Pillow==5.2.0
psycopg2==2.7.5
python-decouple==3.1
pytz==2018.5
requests==2.19.1
six==1.11.0
static3==0.7.0
urllib3==1.23
runtime.txt
python-3.6.0
Procfile
web: gunicorn Site.wsgi --log-file -
I already deleted the app and created it again and nothing. Any tips on how to solve?