Files
hassio-addons-avm/hello_flask/app.py
2021-08-24 14:35:11 +03:00

13 lines
208 B
Python
Executable File

from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "Hey, we have Flask in a Docker container!"
if __name__ == "__main__":
app.run(debug=True, host="0.0.0.0")