working version

This commit is contained in:
timothypidashev
2021-07-15 11:50:18 -07:00
parent 966ce43331
commit 142129a13f
23 changed files with 4465 additions and 2 deletions

View File

@@ -1,10 +1,10 @@
from flask import Flask
app = Flask(__name__)
app = Flask(__name__, static_folder=".", static_url_path="")
@app.route("/")
def home():
return "Home Page Route"
return app.send_static_file("index.html")