demo_flask / app.py
osanseviero's picture
Prueba de concepto
9fa7daa
raw
history blame contribute delete
267 Bytes
import flask
import os
from dotenv import load_dotenv
load_dotenv()
app = flask.Flask(__name__, template_folder="static")
@app.route("/")
def index():
return flask.render_template("index.html")
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860)