Spaces:
Running
Running
File size: 346 Bytes
479168e ad971fd 479168e ad971fd 479168e ad971fd 479168e ad971fd 479168e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from flask import Flask, send_from_directory
app = Flask(__name__, static_folder=".", static_url_path="")
@app.route("/")
def root():
return send_from_directory(".", "index.html")
@app.route("/<path:path>")
def static_files(path):
return send_from_directory(".", path)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860) |