added stuff + monitoring (to logfile)

This commit is contained in:
Rens Pastoor
2025-10-28 15:00:32 +01:00
parent aa32f81e97
commit 3dda7d01a0
8 changed files with 407 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from flask import Flask
# from flask import render_template
app = Flask(__name__)
@app.route("/")
def init():
return "<h1>Hello, World!</h1>"
app.run(host="127.0.0.1", port=5000)