Skip to content
Advertisement

Flask App Deployment: Internal Server Error

I recently tried to deploy a flask app using Heroku. However, I encountered an internal server error. My code can be found here: https://github.com/chaneth8/Task_List. This is the message that appeared on my log in Heroku – what could the error be?

JavaScript

Thanks in advance.

Advertisement

Answer

I studied your code and hosted the same on https://ethan-flask.herokuapp.com/

The blunders you did:

from flask_session import Session – remove this

Session(app) – remove this

And add the following code at the end –

JavaScript

I will create a PR on your repo soon Thanks ;)

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement