Switch to side-by-side view

--- a/webui-standalone.py
+++ b/webui-standalone.py
@@ -1,8 +1,10 @@
 #!/usr/bin/env python
-import bottle
+import os
+# change to webui's directory and import
+os.chdir(os.path.dirname(__file__))
 import webui
-
-bottle.debug(True)
-bottle.run(host='localhost', port=8080, reloader=True)
+# set up webui and run in own http server
+webui.bottle.debug(True)
+webui.bottle.run(host='localhost', port=8080, reloader=False)
 
 # vim: foldmethod=marker:filetype=python:textwidth=80:ts=4:et