LoMeS/assets/config/flask/lomes-app.py

12 lines
305 B
Python
Raw Normal View History

2025-10-12 18:41:50 +02:00
#!/bin/python3
from flask import Flask, render_template
2025-10-12 20:14:45 +02:00
app = Flask(__name__, static_folder="/var/www/html", static_url_path="/var/www/html", send_from_directory("data/images, lomes.svg"))
2025-10-12 18:41:50 +02:00
@app.route("/")
def index():
2025-10-12 20:14:45 +02:00
return app.send_static_file("index.html")
2025-10-12 18:41:50 +02:00
2025-10-12 20:14:45 +02:00
app.run(host="127.0.0.1", port=5000)