How to run flask app
automatically during windows boot?
I have a simple python app
@app.route("/")
def hello():
# Login Service
logging.debug("hello world")
return "Hello World!"
if __name__ == "__main__":
app.run()
python app.py
runs a web app
on http://localhost:5000
I want to start the same automatically during the windows boot.
I am new to python + flask + Windows..