summaryrefslogtreecommitdiff
path: root/bin/web.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/web.py')
-rw-r--r--bin/web.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/web.py b/bin/web.py
new file mode 100644
index 0000000..c0e2f5d
--- /dev/null
+++ b/bin/web.py
@@ -0,0 +1,7 @@
+#!/usr/bin/python
+# coding: utf-8
+import bottle
+from ebus import web
+
+if __name__ == "__main__":
+ bottle.run(web.app, host="0.0.0.0", port=8000, reloader=True)