blob: 97bf39cf03037266e5ad4f089d86266dc7c7987b (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env python
# coding: utf-8
import bottle
from ebus import webhdf
if __name__ == "__main__":
bottle.debug(False)
bottle.run(webhdf.app, host="0.0.0.0", port=8000, reloader=False)
|