summaryrefslogtreecommitdiff
path: root/bin/webapp.py
blob: c3975f346bb008eb0a67d8f16c0e3926a749e5c0 (plain)
1
2
3
4
5
6
7
#!/usr/bin/python
# coding: utf-8
import bottle
from ebus import webapp

if __name__ == "__main__":
    bottle.run(webapp.app, host="0.0.0.0", port=8000, reloader=True)