Add a nice message when starting the server

This commit is contained in:
Brian Duggan 2018-05-22 14:07:36 -04:00
parent d0ec019d6a
commit 1d8321a8dd

1
app.py
View File

@ -20,4 +20,5 @@ def make_app():
if __name__ == "__main__":
app = make_app()
app.listen(8888)
print("Listening on http://localhost:8888")
tornado.ioloop.IOLoop.current().start()