#!/usr/bin/env python

import tornado
from sems.server import make_app

app = make_app()
app.listen(8888)
tornado.ioloop.IOLoop.current().start()

