instasaas / app.py
Persano's picture
Update app.py
86c264a verified
raw
history blame contribute delete
389 Bytes
from flask import Flask, send_from_directory
import os
app = Flask(__name__, static_folder="dist", static_url_path="")
@app.route("/")
def index():
return send_from_directory(app.static_folder, "index.html")
@app.route("/<path:path>")
def static_files(path):
return send_from_directory(app.static_folder, path)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860)