test-area/test1/app.py

10 lines
199 B
Python
Raw Permalink Normal View History

2025-03-29 17:23:45 +01:00
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/', methods=['GET'])
def home():
return render_template('index.html')
app.run(host='0.0.0.0', port=5000, debug=True)