We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43491f5 commit 7ea9f09Copy full SHA for 7ea9f09
1 file changed
myapp/app.py
@@ -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