2025-10-12 20:14:45 +02:00
|
|
|
#!/bin/python3
|
|
|
|
|
|
|
|
|
|
from flask import Flask, render_template
|
|
|
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
|
|
|
|
@app.route("/")
|
|
|
|
|
def index():
|
2025-10-14 15:03:09 +02:00
|
|
|
#return render_template("index.html")
|
|
|
|
|
return "TEST"
|
2025-10-12 20:14:45 +02:00
|
|
|
|
|
|
|
|
|
2025-10-14 13:02:27 +02:00
|
|
|
app.run(host="127.0.0.1", port=5000)
|
2025-10-14 15:03:09 +02:00
|
|
|
appFlask.run(debug=True)
|