summaryrefslogtreecommitdiff
path: root/heap/bin/web_dev.py
blob: ea51519b2b47642ba10656c9c3b31341da1ed6d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
# coding: utf-8
import bottle
from ebus import webhdf

from pympler.web import start_in_background

if __name__ == "__main__":
    start_in_background(host="0.0.0.0",port=8090)

    bottle.debug(True)

    bottle.run(webhdf.app, host="0.0.0.0", port=8000, reloader=True)