From 604e92559787ed7e7b590321f6a1ff8fc515e06d Mon Sep 17 00:00:00 2001 From: Ebus-at-dockstar Date: Thu, 7 Mar 2013 14:20:42 +0100 Subject: python datastore + webhdf --- bin/web_prod.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'bin') 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) -- cgit v1.2.1