A simple flask app with web interface
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
300 B

from flask import current_app, render_template
from app.main import bp
@bp.route("/", methods=["GET", "POST"])
@bp.route("/index", methods=["GET", "POST"])
def index():
return render_template("index.html",
title="Home Page",
environment=current_app.config["ENVIRONMENT"]
)