mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 19:13:51 +00:00
working version
This commit is contained in:
@@ -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")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user