Skip to content

Commit

Permalink
chore: add example config
Browse files Browse the repository at this point in the history
  • Loading branch information
sn1f3rt committed Dec 15, 2024
1 parent 87ed08d commit 6a6db1b
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions config.example.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
TOKEN = "token"

EMBED_COLOR = 0xE44C65

WEBHOOK_ID = 1234567890
WEBHOOK_TOKEN = "webhook_token"

IPC_SECRET_KEY = "ipc_secret_key"
IPC_STANDARD_PORT = 10001
IPC_MULTICAST_PORT = 20001

COMMUNITY_GUILD_ID = 1234567890

DB_NAME = "db_name"
DB_USER = "db_user"
DB_PASSWORD = "db_password"
DB_HOST = "localhost"
DB_PORT = 3306

TOPGG_TOKEN = "topgg_token"

INITIAL_EXTENSIONS = [
"cogs.__dev__",
"cogs.__error__",
"cogs.__eval__",
"cogs.__ipc__",
"cogs.__topgg__",
"cogs.afk",
"cogs.general",
"cogs.help",
"cogs.moderation",
"cogs.roles",
"cogs.settings",
]

0 comments on commit 6a6db1b

Please sign in to comment.