Skip to content

Commit 7ea9f09

Browse files
authored
update app.py
1 parent 43491f5 commit 7ea9f09

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

myapp/app.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from flask import Flask
2+
app = Flask(__name__)
3+
4+
@app.route("/")
5+
def index():
6+
return "✅ Deployed Flask 3.0 App via AWS ECS + CodePipeline 🚀"
7+
8+
if __name__ == "__main__":
9+
app.run(host="0.0.0.0", port=8080)

0 commit comments

Comments
 (0)