Невозможно развернуть проект django на heroku

Я пытаюсь развернуть проект Django на Heroku, но получаю следующую ошибку.

2021-08-07T10:05:35.789899+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=betabrains.herokuapp.com request_id=2e0f8a7e-ce6f-492b-88d9-81b89a3d7ec0 fwd="223.187.110.102" dyno= connect= service= status=503 bytes= protocol=https
2021-08-07T10:05:36.294818+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=betabrains.herokuapp.com request_id=0bcb0efe-ef5a-4040-9a5e-a5ca56ea9867 fwd="223.187.110.102" dyno= connect= service= status=503 bytes= protocol=https
2021-08-07T10:05:45.842915+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=betabrains.herokuapp.com request_id=fb1e34e7-cc89-4e2f-b7a9-6086b8b8846e fwd="223.187.110.102" dyno= connect= service= status=503 bytes= protocol=https
2021-08-07T10:05:46.803562+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=betabrains.herokuapp.com request_id=bcd75f14-d98a-42c6-9a6f-e43478360d11 fwd="223.187.110.102" dyno= connect= service= status=503 bytes= protocol=https
2021-08-07T10:08:04.166212+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=betabrains.herokuapp.com request_id=93ab6bfb-f8c5-4b5f-9a7a-2eca36b467ed fwd="223.187.110.102" dyno= connect= service= status=503 bytes= protocol=https
2021-08-07T10:08:04.627050+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=betabrains.herokuapp.com request_id=73582b96-2327-4c95-8962-a239c1270075 fwd="223.187.110.102" dyno= connect= service= status=503 bytes= protocol=https

моя файловая система.

.
├── Procfile
├── aboutus
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-39.pyc
│   │   ├── admin.cpython-39.pyc
│   │   ├── apps.cpython-39.pyc
│   │   ├── models.cpython-39.pyc
│   │   ├── urls.cpython-39.pyc
│   │   └── views.cpython-39.pyc
│   ├── admin.py
│   ├── apps.py
│   ├── migrations
│   │   ├── __init__.py
│   │   └── __pycache__
│   │       └── __init__.cpython-39.pyc
│   ├── models.py
│   ├── templates
│   │   └── aboutus
│   │       └── index.html
│   ├── tests.py
│   ├── urls.py
│   └── views.py
├── betabrains
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-39.pyc
│   │   ├── settings.cpython-39.pyc
│   │   ├── urls.cpython-39.pyc
│   │   └── wsgi.cpython-39.pyc
│   ├── asgi.py
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
├── blogs
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-39.pyc
│   │   ├── admin.cpython-39.pyc
│   │   ├── apps.cpython-39.pyc
│   │   ├── models.cpython-39.pyc
│   │   ├── urls.cpython-39.pyc
│   │   └── views.cpython-39.pyc
│   ├── admin.py
│   ├── apps.py
│   ├── migrations
│   │   ├── __init__.py
│   │   └── __pycache__
│   │       └── __init__.cpython-39.pyc
│   ├── models.py
│   ├── static
│   │   └── blogs
│   ├── templates
│   │   └── blogs
│   │       ├── basic.html
│   │       └── index.html
│   ├── tests.py
│   ├── urls.py
│   └── views.py
├── contactus
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-39.pyc
│   │   ├── admin.cpython-39.pyc
│   │   ├── apps.cpython-39.pyc
│   │   ├── models.cpython-39.pyc
│   │   ├── urls.cpython-39.pyc
│   │   └── views.cpython-39.pyc
│   ├── admin.py
│   ├── apps.py
│   ├── migrations
│   │   ├── __init__.py
│   │   └── __pycache__
│   │       └── __init__.cpython-39.pyc
│   ├── models.py
│   ├── templates
│   │   └── contactus
│   │       └── index.html
│   ├── tests.py
│   ├── urls.py
│   └── views.py
├── db.sqlite3
├── go.sh
├── manage.py
├── requirements.txt
└── runtime.txt

22 directories, 64 files

когда я выполняю команду heroku logs --tail. Я получаю приведенную выше ошибку в последнем.

мой файл settings.py.

Вернуться на верх