for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from flask import Blueprint, render_template
bp = Blueprint("app", __name__)
@bp.route("/")
def home():
return render_template("home.html")