-1

I'm following django for beginners by william vincent and i followed every step carefully and in the end while deploying my pages app on heroku, i see this application error. Please guide me, I'm a beginner in programming.

here in the image you can see application error

[![here in the image you can see application error][1]][1]

1]: https://i.stack.imgur.com/6VBoX.jpg!This is log showing on heroku...I have installed django and it's showing module not found](https://i.stack.imgur.com/asIUk.jpg)

1 Answers1

0

"Application Error" or similar is always caused by your own application code. Routing errors will normally only surface themselves within the logs of your application. To track this kind of issue down you should look at your logs:

$ heroku logs --tail --app your_app_name

or log in to your heroku dashboard and click on your app and at the top right corner click on More option and than click on View logs and check the logs that will help you to figure your mistake Demo Image

Ankit Tiwari
  • 4,438
  • 4
  • 14
  • 41