Spaces:
Sleeping
Sleeping
File size: 380 Bytes
7168f44 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from flask import Flask, send_from_directory
app = Flask(__name__, static_folder='build', static_url_path='')
@app.route('/')
def serve():
return send_from_directory(app.static_folder, 'index.html')
@app.route('/<path:path>')
def static_proxy(path):
return send_from_directory(app.static_folder, path)
if __name__ == '__main__':
app.run(host="0.0.0.0", port=7860)
|