LoMeS/lomes-app.py

12 lines
214 B
Python
Executable file

#!/bin/python3
from flask import Flask, render_template
app = Flask(__name__, static_folder="static")
@app.route("/")
def index():
return render_template("index.html")
app.run(host="127.0.0.1", port=5000)