summaryrefslogtreecommitdiff
path: root/bin/web_dev.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/web_dev.py')
-rwxr-xr-xbin/web_dev.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/bin/web_dev.py b/bin/web_dev.py
index c04c071..8c45f0b 100755
--- a/bin/web_dev.py
+++ b/bin/web_dev.py
@@ -1,12 +1,9 @@
-#!/usr/bin/python
+#!/usr/bin/env python
# coding: utf-8
import bottle
-from ebus import webapp
-from ebus.webapp.soup_plugin import SoupPlugin
+from ebus import webhdf
if __name__ == "__main__":
- soup = SoupPlugin(url="postgresql://ebus:ebus@10.2.2.26:5432/ebus", echo=True)
- webapp.app.install(soup)
bottle.debug(True)
- bottle.run(webapp.app, host="0.0.0.0", port=8000, reloader=True)
+ bottle.run(webhdf.app, host="0.0.0.0", port=8080, reloader=True)