This commit is contained in:
dev-chiefworks
2024-01-29 09:50:59 -05:00
parent 3c46b06a09
commit 162056426f
+11
View File
@@ -0,0 +1,11 @@
# app.py
from *flask* import *Flask*
*app* = *Flask*(*__name__*)
@app.*route*("/")
def hello_world():
return "<h1>Starter Flask App</h1>"
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0')