diff options
Diffstat (limited to 'bin')
-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) |