├── .gitattributes ├── .gitignore ├── README.md ├── app.py ├── routes.py ├── static ├── chatroom_chat.png └── chatroom_login.png ├── templates ├── chat.html └── login.html └── websocket_route.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/app.py -------------------------------------------------------------------------------- /routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/routes.py -------------------------------------------------------------------------------- /static/chatroom_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/static/chatroom_chat.png -------------------------------------------------------------------------------- /static/chatroom_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/static/chatroom_login.png -------------------------------------------------------------------------------- /templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/templates/chat.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/templates/login.html -------------------------------------------------------------------------------- /websocket_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppd0705/flask_chatroom/HEAD/websocket_route.py --------------------------------------------------------------------------------