I used these lines to start my application:
from app import app
app.run(host='0.0.0.0', port=8080, debug=True)
Using Flask-Migrate, I have this instead:
from app import manager
manager.run()
manager.run
does not take the same arguments as app.run
, how do I define host and port?