1

Afterenter image description here

I am getting this error after deploying the app... Anyone know why this could be happening?

This is what I am getting in the console: Failed to load resource: the server responded with a status of 503 (Service Unavailable)

This is the heroku logs heroku logs

  • Can you provide you log info, do heroku logs --tail as displayed in the image – Janith Aug 31 '18 at 23:43
  • Hi Janith! Thanks for asking for that! I just added a screenshot of the heroku logs. I realized that is not reading my index file... Now I'm trying to figure out what I did wrong.. – Angie Spears Aug 31 '18 at 23:56

1 Answers1

0

Thanks to the suggestion from Janith to check Heroku logs, I figured out the issue!

I previously set the routes on an app.js file when it needed to be pointing to my index.js file. Also, I needed to set nodemailer on a different file. After setting the routes in my index.js file and setting nodemailer on a separate file the issue was fixed.

Hope this helps anyone running to the same silly issue!

Thanks again @janith!