├── .gitignore ├── README.md ├── backend ├── __init__.py ├── api.py └── database.py ├── bot.py ├── frontend ├── guilds.html ├── index.html ├── server.html └── static │ └── style.css ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/backend/__init__.py -------------------------------------------------------------------------------- /backend/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/backend/api.py -------------------------------------------------------------------------------- /backend/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/backend/database.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/bot.py -------------------------------------------------------------------------------- /frontend/guilds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/frontend/guilds.html -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/frontend/server.html -------------------------------------------------------------------------------- /frontend/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/frontend/static/style.css -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tibue99/tutorial-dashboard/HEAD/requirements.txt --------------------------------------------------------------------------------