Flask setup

This commit is contained in:
richard-dds
2018-08-01 10:51:14 -04:00
parent 1a6d42f385
commit 6a5d3d57cf
8 changed files with 318 additions and 223 deletions

7
atst/routes/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import Blueprint, render_template
bp = Blueprint("atst", __name__)
@bp.route("/")
def home():
return render_template("home.html")