Changed from hard coded relative path to detect the scripts path and dynamically generate the correct path.
This means that it can be run from any directory which is useful with startup scripts.
This commit is contained in:
parent
c790a842a0
commit
79aab4ef8f
@ -44,7 +44,7 @@ def index():
|
||||
@app.route('/picoreflow/:filename#.*#')
|
||||
def send_static(filename):
|
||||
log.debug("serving %s" % filename)
|
||||
return bottle.static_file(filename, root='./public/')
|
||||
return bottle.static_file(filename, root=os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), "public"))
|
||||
|
||||
|
||||
def get_websocket_from_request():
|
||||
|
||||
Loading…
Reference in New Issue
Block a user