Ошибка приложения В приложении произошла ошибка, и ваша страница не может быть обслужена. в heroku

Я пытался развернуть свой проект python на heroku. После успешного развертывания, когда я запускаю приложение, оно выдает мне ошибки типа...

Application error
An error occurred in the application and your page could not be served. If you are the application owner, **check your logs for details**. You can do this from the Heroku CLI with the command
heroku logs --tail

после нажатия на вышеуказанную ссылку я получил вот это

heroku logs
2010-09-16T15:13:46.677020+00:00 app[web.1]: Processing PostController#list (for 208.39.138.12 at 2010-09-16 15:13:46) [GET]
2010-09-16T15:13:46.677023+00:00 app[web.1]: Rendering template within layouts/application
2010-09-16T15:13:46.677902+00:00 app[web.1]: Rendering post/list
2010-09-16T15:13:46.678990+00:00 app[web.1]: Rendered includes/_header (0.1ms)
2010-09-16T15:13:46.698234+00:00 app[web.1]: Completed in 74ms (View: 31, DB: 40) | 200 OK [http://myapp.heroku.com/]
2010-09-16T15:13:46.723498+00:00 heroku[router]: at=info method=GET path="/posts" host=myapp.herokuapp.com" fwd="204.204.204.204" dyno=web.1 connect=1ms service=18ms status=200 bytes=975
2010-09-16T15:13:47.893472+00:00 app[worker.1]: 2 jobs processed at 16.6761 j/s, 0 failed ...

как можно решить эту ошибку?

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