summaryrefslogtreecommitdiff
path: root/bin/webapp.py
diff options
context:
space:
mode:
authormarc <marc@thinkpad.localnet.cc>2011-07-12 22:20:31 +0200
committermarc <marc@thinkpad.localnet.cc>2011-07-12 22:20:31 +0200
commit2d3bebf62bee63c39e49d33180013c5d7f225a38 (patch)
tree71bb8f9eb97fa2913268209e311a650c479be777 /bin/webapp.py
parent4e7f2748ccd6feba3e24b5ae5a285eeac7decc4b (diff)
downloadebus-alt-2d3bebf62bee63c39e49d33180013c5d7f225a38.tar.gz
ebus-alt-2d3bebf62bee63c39e49d33180013c5d7f225a38.zip
Werte unabhängig vom Datentyp ausgeben. Aktuellsten Wert ausgeben.
Diffstat (limited to 'bin/webapp.py')
-rw-r--r--bin/webapp.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/webapp.py b/bin/webapp.py
new file mode 100644
index 0000000..c3975f3
--- /dev/null
+++ b/bin/webapp.py
@@ -0,0 +1,7 @@
+#!/usr/bin/python
+# coding: utf-8
+import bottle
+from ebus import webapp
+
+if __name__ == "__main__":
+ bottle.run(webapp.app, host="0.0.0.0", port=8000, reloader=True)