File size: 391 Bytes
aa18684
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Adds logic to serve static html for running within huggingface
from flask import send_from_directory, request
from main import app

@app.errorhandler(404)
def page_not_found(e):
    path = request.path.lstrip('/')
    if path == '':
       path = 'index.html'
    print(path)
    return send_from_directory('static', path)

if __name__ == '__main__':
   app.run(host="0.0.0.0", port=7860)