Files
atst/app.py
2018-05-25 11:21:49 -04:00

12 lines
251 B
Python
Executable File

#!/usr/bin/env python
from atst.app import make_app
import tornado.ioloop
import os
app = make_app(debug=os.getenv('DEBUG',False))
port = 8888
app.listen(port)
print("Listening on http://localhost:%i" % port)
tornado.ioloop.IOLoop.current().start()