├── .env ├── .github └── workflows │ └── pre-commit.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── ballsdex ├── __init__.py ├── __main__.py ├── core │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── resources.py │ │ └── routes.py │ ├── bot.py │ ├── commands.py │ ├── dev.py │ ├── image_generator │ │ ├── __init__.py │ │ ├── image_gen.py │ │ └── src │ │ │ ├── ArsenicaTrial-Extrabold.ttf │ │ │ ├── Bobby Jones Soft.otf │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-Semibold.ttf │ │ │ ├── arial.ttf │ │ │ ├── capitalist.png │ │ │ ├── communist.png │ │ │ ├── democracy.png │ │ │ ├── dictatorship.png │ │ │ ├── fr_test.png │ │ │ ├── shiny.png │ │ │ └── union.png │ ├── metrics.py │ ├── models.py │ └── utils │ │ ├── __init__.py │ │ ├── buttons.py │ │ ├── discord-ext-menus.LIENSE │ │ ├── logging.py │ │ ├── menus.py │ │ ├── paginator.py │ │ ├── tortoise.py │ │ └── transformers.py ├── logging.py ├── packages │ ├── admin │ │ ├── __init__.py │ │ └── cog.py │ ├── balls │ │ ├── __init__.py │ │ ├── cog.py │ │ └── countryballs_paginator.py │ ├── config │ │ ├── __init__.py │ │ ├── cog.py │ │ └── components.py │ ├── countryballs │ │ ├── __init__.py │ │ ├── cog.py │ │ ├── components.py │ │ ├── countryball.py │ │ └── spawn.py │ ├── info │ │ ├── __init__.py │ │ └── cog.py │ ├── players │ │ ├── __init__.py │ │ └── cog.py │ └── trade │ │ ├── __init__.py │ │ ├── cog.py │ │ ├── display.py │ │ ├── menu.py │ │ └── trade_user.py ├── settings.py └── templates │ ├── base.html │ ├── dashboard.html │ ├── password.html │ └── providers │ └── login │ └── password.html ├── docker-compose.yml ├── gatewayproxy └── config.json.example ├── json-config-ref.json ├── migrations └── models │ ├── 0_20220909204856_init.sql │ ├── 10_20221022184330_update.sql │ ├── 11_20230127140747_update.sql │ ├── 12_20230224112031_update.sql │ ├── 13_20230301173448_update.sql │ ├── 14_20230326131235_update.sql │ ├── 15_20230404133020_update.sql │ ├── 16_20230410144614_update.sql │ ├── 17_20230420000356_update.sql │ ├── 19_20230522100203_update.sql │ ├── 1_20220909223048_update.sql │ ├── 20_20230725165036_update.sql │ ├── 21_20231113175415_update.sql │ ├── 22_20231115171322_update.sql │ ├── 23_20231205113247_update.sql │ ├── 24_20231219112238_update.sql │ ├── 25_20240109160009_update.sql │ ├── 26_20240121004430_update.sql │ ├── 27_20240123140205_update.sql │ ├── 28_20240225164026_update.sql │ ├── 29_20240320142916_update.sql │ ├── 2_20220910020800_update.sql │ ├── 3_20220913220923_update.sql │ ├── 4_20220915164836_update.sql │ ├── 5_20220924005726_update.sql │ ├── 6_20220924014717_update.sql │ ├── 7_20220926000044_update.sql │ ├── 8_20220926000601_update.sql │ └── 9_20221007231725_update.sql ├── poetry.lock ├── pyproject.toml └── static └── uploads └── .gitkeep /.env: -------------------------------------------------------------------------------- 1 | POSTGRES_PASSWORD=defaultballsdexpassword -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/README.md -------------------------------------------------------------------------------- /ballsdex/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.16.0" 2 | -------------------------------------------------------------------------------- /ballsdex/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/__main__.py -------------------------------------------------------------------------------- /ballsdex/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ballsdex/core/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/admin/__init__.py -------------------------------------------------------------------------------- /ballsdex/core/admin/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/admin/resources.py -------------------------------------------------------------------------------- /ballsdex/core/admin/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/admin/routes.py -------------------------------------------------------------------------------- /ballsdex/core/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/bot.py -------------------------------------------------------------------------------- /ballsdex/core/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/commands.py -------------------------------------------------------------------------------- /ballsdex/core/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/dev.py -------------------------------------------------------------------------------- /ballsdex/core/image_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ballsdex/core/image_generator/image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/image_gen.py -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/ArsenicaTrial-Extrabold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/ArsenicaTrial-Extrabold.ttf -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/Bobby Jones Soft.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/Bobby Jones Soft.otf -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/arial.ttf -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/capitalist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/capitalist.png -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/communist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/communist.png -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/democracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/democracy.png -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/dictatorship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/dictatorship.png -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/fr_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/fr_test.png -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/shiny.png -------------------------------------------------------------------------------- /ballsdex/core/image_generator/src/union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/image_generator/src/union.png -------------------------------------------------------------------------------- /ballsdex/core/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/metrics.py -------------------------------------------------------------------------------- /ballsdex/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/models.py -------------------------------------------------------------------------------- /ballsdex/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ballsdex/core/utils/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/utils/buttons.py -------------------------------------------------------------------------------- /ballsdex/core/utils/discord-ext-menus.LIENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/utils/discord-ext-menus.LIENSE -------------------------------------------------------------------------------- /ballsdex/core/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/utils/logging.py -------------------------------------------------------------------------------- /ballsdex/core/utils/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/utils/menus.py -------------------------------------------------------------------------------- /ballsdex/core/utils/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/utils/paginator.py -------------------------------------------------------------------------------- /ballsdex/core/utils/tortoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/utils/tortoise.py -------------------------------------------------------------------------------- /ballsdex/core/utils/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/core/utils/transformers.py -------------------------------------------------------------------------------- /ballsdex/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/logging.py -------------------------------------------------------------------------------- /ballsdex/packages/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/admin/__init__.py -------------------------------------------------------------------------------- /ballsdex/packages/admin/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/admin/cog.py -------------------------------------------------------------------------------- /ballsdex/packages/balls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/balls/__init__.py -------------------------------------------------------------------------------- /ballsdex/packages/balls/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/balls/cog.py -------------------------------------------------------------------------------- /ballsdex/packages/balls/countryballs_paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/balls/countryballs_paginator.py -------------------------------------------------------------------------------- /ballsdex/packages/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/config/__init__.py -------------------------------------------------------------------------------- /ballsdex/packages/config/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/config/cog.py -------------------------------------------------------------------------------- /ballsdex/packages/config/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/config/components.py -------------------------------------------------------------------------------- /ballsdex/packages/countryballs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/countryballs/__init__.py -------------------------------------------------------------------------------- /ballsdex/packages/countryballs/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/countryballs/cog.py -------------------------------------------------------------------------------- /ballsdex/packages/countryballs/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/countryballs/components.py -------------------------------------------------------------------------------- /ballsdex/packages/countryballs/countryball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/countryballs/countryball.py -------------------------------------------------------------------------------- /ballsdex/packages/countryballs/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/countryballs/spawn.py -------------------------------------------------------------------------------- /ballsdex/packages/info/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/info/__init__.py -------------------------------------------------------------------------------- /ballsdex/packages/info/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/info/cog.py -------------------------------------------------------------------------------- /ballsdex/packages/players/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/players/__init__.py -------------------------------------------------------------------------------- /ballsdex/packages/players/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/players/cog.py -------------------------------------------------------------------------------- /ballsdex/packages/trade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/trade/__init__.py -------------------------------------------------------------------------------- /ballsdex/packages/trade/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/trade/cog.py -------------------------------------------------------------------------------- /ballsdex/packages/trade/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/trade/display.py -------------------------------------------------------------------------------- /ballsdex/packages/trade/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/trade/menu.py -------------------------------------------------------------------------------- /ballsdex/packages/trade/trade_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/packages/trade/trade_user.py -------------------------------------------------------------------------------- /ballsdex/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/settings.py -------------------------------------------------------------------------------- /ballsdex/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/templates/base.html -------------------------------------------------------------------------------- /ballsdex/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/templates/dashboard.html -------------------------------------------------------------------------------- /ballsdex/templates/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/templates/password.html -------------------------------------------------------------------------------- /ballsdex/templates/providers/login/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/ballsdex/templates/providers/login/password.html -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gatewayproxy/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/gatewayproxy/config.json.example -------------------------------------------------------------------------------- /json-config-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/json-config-ref.json -------------------------------------------------------------------------------- /migrations/models/0_20220909204856_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/0_20220909204856_init.sql -------------------------------------------------------------------------------- /migrations/models/10_20221022184330_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/10_20221022184330_update.sql -------------------------------------------------------------------------------- /migrations/models/11_20230127140747_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/11_20230127140747_update.sql -------------------------------------------------------------------------------- /migrations/models/12_20230224112031_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/12_20230224112031_update.sql -------------------------------------------------------------------------------- /migrations/models/13_20230301173448_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/13_20230301173448_update.sql -------------------------------------------------------------------------------- /migrations/models/14_20230326131235_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/14_20230326131235_update.sql -------------------------------------------------------------------------------- /migrations/models/15_20230404133020_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/15_20230404133020_update.sql -------------------------------------------------------------------------------- /migrations/models/16_20230410144614_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/16_20230410144614_update.sql -------------------------------------------------------------------------------- /migrations/models/17_20230420000356_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/17_20230420000356_update.sql -------------------------------------------------------------------------------- /migrations/models/19_20230522100203_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/19_20230522100203_update.sql -------------------------------------------------------------------------------- /migrations/models/1_20220909223048_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/1_20220909223048_update.sql -------------------------------------------------------------------------------- /migrations/models/20_20230725165036_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/20_20230725165036_update.sql -------------------------------------------------------------------------------- /migrations/models/21_20231113175415_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/21_20231113175415_update.sql -------------------------------------------------------------------------------- /migrations/models/22_20231115171322_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/22_20231115171322_update.sql -------------------------------------------------------------------------------- /migrations/models/23_20231205113247_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/23_20231205113247_update.sql -------------------------------------------------------------------------------- /migrations/models/24_20231219112238_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/24_20231219112238_update.sql -------------------------------------------------------------------------------- /migrations/models/25_20240109160009_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/25_20240109160009_update.sql -------------------------------------------------------------------------------- /migrations/models/26_20240121004430_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/26_20240121004430_update.sql -------------------------------------------------------------------------------- /migrations/models/27_20240123140205_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/27_20240123140205_update.sql -------------------------------------------------------------------------------- /migrations/models/28_20240225164026_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/28_20240225164026_update.sql -------------------------------------------------------------------------------- /migrations/models/29_20240320142916_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/29_20240320142916_update.sql -------------------------------------------------------------------------------- /migrations/models/2_20220910020800_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/2_20220910020800_update.sql -------------------------------------------------------------------------------- /migrations/models/3_20220913220923_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/3_20220913220923_update.sql -------------------------------------------------------------------------------- /migrations/models/4_20220915164836_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/4_20220915164836_update.sql -------------------------------------------------------------------------------- /migrations/models/5_20220924005726_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/5_20220924005726_update.sql -------------------------------------------------------------------------------- /migrations/models/6_20220924014717_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/6_20220924014717_update.sql -------------------------------------------------------------------------------- /migrations/models/7_20220926000044_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/7_20220926000044_update.sql -------------------------------------------------------------------------------- /migrations/models/8_20220926000601_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/8_20220926000601_update.sql -------------------------------------------------------------------------------- /migrations/models/9_20221007231725_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/migrations/models/9_20221007231725_update.sql -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/discbot-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------