Skip to content

Commit

Permalink
U24
Browse files Browse the repository at this point in the history
  • Loading branch information
vutoff committed Oct 16, 2024
1 parent bddf6a5 commit 4cb2645
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.11.8
14 changes: 14 additions & 0 deletions app/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import os

from flask import Flask

app = Flask(__name__)


@app.route("/")
def hello_world():
return "Hello, World!"


if __name__ == "__main__":
app.run(port=os.environ.get("PORT", 3000), host="0.0.0.0")

0 comments on commit 4cb2645

Please sign in to comment.