App datei
This commit is contained in:
parent
eca7df4c2f
commit
fb6d9e179c
1 changed files with 10 additions and 0 deletions
10
app/app.py
Normal file
10
app/app.py
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
from flask import Flask
|
||||||
|
|
||||||
|
app = Flask(__name__)
|
||||||
|
|
||||||
|
@app.route("/")
|
||||||
|
def hello():
|
||||||
|
return "Hallo aus meiner Flask-App!"
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
app.run(host="0.0.0.0", port=9008) # 90 + Raumnummer (Wir: 08)
|
||||||
Loading…
Reference in a new issue