diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2013-04-20 22:26:55 +0200 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2013-04-20 22:27:00 +0200 |
commit | 0fab00a2ff4fbe7c3c56b7bd2dc523eb974aba61 (patch) | |
tree | 3d8222d4e3de49172b410c3d1136dfaaa18294d0 /ebus-datastore/ebus_web.py | |
parent | b5c71cfd18eb145acb72d0a9b58c5b10fbeac74d (diff) | |
download | ebus-alt-0fab00a2ff4fbe7c3c56b7bd2dc523eb974aba61.tar.gz ebus-alt-0fab00a2ff4fbe7c3c56b7bd2dc523eb974aba61.zip |
sachen rumgeschoben, leveldb: 32bit fix
Diffstat (limited to 'ebus-datastore/ebus_web.py')
-rwxr-xr-x | ebus-datastore/ebus_web.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/ebus-datastore/ebus_web.py b/ebus-datastore/ebus_web.py deleted file mode 100755 index 6dd71ab..0000000 --- a/ebus-datastore/ebus_web.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python -# coding: utf-8 -import bottle -from ebus import web -import atexit - -def close_datastore(): - web.datastore.close() - -if __name__ == "__main__": - bottle.debug(True) - - atexit.register(close_datastore) - - #bottle.run(web.app, host="0.0.0.0", port=8000, reloader=True) - bottle.run(web.app, host="0.0.0.0", port=8000, reloader=False, server="waitress") |