├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── static ├── css │ ├── sb-admin.css │ └── sb-admin.min.css └── js │ ├── customer.js │ ├── message.js │ └── order.js └── templates ├── dashboard.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | /__pycache__ 2 | /.venv 3 | pythonsqlite.db 4 | /*.pyc 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/app.py -------------------------------------------------------------------------------- /static/css/sb-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/static/css/sb-admin.css -------------------------------------------------------------------------------- /static/css/sb-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/static/css/sb-admin.min.css -------------------------------------------------------------------------------- /static/js/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/static/js/customer.js -------------------------------------------------------------------------------- /static/js/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/static/js/message.js -------------------------------------------------------------------------------- /static/js/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/static/js/order.js -------------------------------------------------------------------------------- /templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/templates/dashboard.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/pusher-python-realtime-dashboard/HEAD/templates/index.html --------------------------------------------------------------------------------