We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b7573a commit 996a646Copy full SHA for 996a646
app.py
@@ -0,0 +1,10 @@
1
+from flask import Flask
2
+
3
+app = Flask(__name__)
4
5
+@app.route("/")
6
+def home():
7
+ return "Hello Yash from Azure Web App running Python 3.13!"
8
9
+if __name__ == "__main__":
10
+ app.run(host='0.0.0.0', port=8000)
requirements.txt
@@ -0,0 +1,2 @@
+flask
+gunicorn
0 commit comments