diff options
author | Ebus-at-dockstar <ebus@dockstar> | 2013-03-07 14:20:42 +0100 |
---|---|---|
committer | Ebus-at-dockstar <ebus@dockstar> | 2013-03-07 14:20:42 +0100 |
commit | 604e92559787ed7e7b590321f6a1ff8fc515e06d (patch) | |
tree | 40c28fc8c47d0e5d2006a8e0bb2f006cb8f46825 /bin/web_prod.py | |
parent | 7f149ab501ab6121bddb82788e4156d21a1828c9 (diff) | |
download | ebus-alt-604e92559787ed7e7b590321f6a1ff8fc515e06d.tar.gz ebus-alt-604e92559787ed7e7b590321f6a1ff8fc515e06d.zip |
python datastore + webhdf
Diffstat (limited to 'bin/web_prod.py')
-rwxr-xr-x | bin/web_prod.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/web_prod.py b/bin/web_prod.py index 9f99d75..97bf39c 100755 --- a/bin/web_prod.py +++ b/bin/web_prod.py @@ -1,12 +1,9 @@ #!/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") - webapp.app.install(soup) bottle.debug(False) - bottle.run(webapp.app, host="0.0.0.0", port=8000, reloader=False) + bottle.run(webhdf.app, host="0.0.0.0", port=8000, reloader=False) |