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:
Rob Shaw 2016-04-07 14:59:08 +01:00
parent c790a842a0
commit 79aab4ef8f

View File

@ -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():