Skip to content

Commit 996a646

Browse files
Demo Yash APP
1 parent 4b7573a commit 996a646

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

app.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
flask
2+
gunicorn

0 commit comments

Comments
 (0)