├── .gitignore ├── README.md ├── app.py ├── static ├── css │ ├── admin.css │ ├── app.css │ └── bootstrap.css ├── img │ └── bg.jpg └── js │ ├── admin.js │ ├── app.js │ ├── axios.js │ ├── bootstrap.js │ ├── jquery.js │ └── popper.js └── templates ├── admin.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | /__pycache__ 2 | /.venv 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/app.py -------------------------------------------------------------------------------- /static/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/css/admin.css -------------------------------------------------------------------------------- /static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/css/app.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/img/bg.jpg -------------------------------------------------------------------------------- /static/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/js/admin.js -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/js/app.js -------------------------------------------------------------------------------- /static/js/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/js/axios.js -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/static/js/popper.js -------------------------------------------------------------------------------- /templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/templates/admin.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/python-pusher-chat-widget/HEAD/templates/index.html --------------------------------------------------------------------------------