25 lines
594 B
Python
25 lines
594 B
Python
|
"""
|
||
|
chat_server.py - 聊天服务器
|
||
|
"""
|
||
|
import os
|
||
|
|
||
|
import tornado.web
|
||
|
import tornado.ioloop
|
||
|
|
||
|
from chat_handlers import LoginHandler, ChatHandler
|
||
|
|
||
|
|
||
|
def main():
|
||
|
app = tornado.web.Application(
|
||
|
handlers=[(r'/login', LoginHandler), (r'/chat', ChatHandler)],
|
||
|
template_path=os.path.join(os.path.dirname(__file__), 'templates'),
|
||
|
static_path=os.path.join(os.path.dirname(__file__), 'static'),
|
||
|
cookie_secret='MWM2MzEyOWFlOWRiOWM2MGMzZThhYTk0ZDNlMDA0OTU=',
|
||
|
)
|
||
|
app.listen(8888)
|
||
|
tornado.ioloop.IOLoop.current().start()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|