I need to print "Server is running..." after flask server is started with app.run(). I'm using flask version 1.1.2
app.run()
I tried using before_first_request decorator, but it doesn't run until first request is sent. Any way to accomplish this?