This commit is contained in:
jbkzi
2026-02-20 22:26:49 +01:00
commit 7ddc49e24a
7 changed files with 145 additions and 0 deletions

18
config.py Normal file
View File

@@ -0,0 +1,18 @@
import os
import discord
from dotenv import load_dotenv
# Load .env file (if it exists) for local testing
load_dotenv()
class Config:
# Secrets
BOT_TOKEN = os.getenv("DISCORD_TOKEN", "YOUR_FALLBACK_TOKEN_HERE")
# Settings
LOG_CHANNEL_NAME = "real-chat-logs"
EMBED_LIMIT = 1000
# Colors
COLOR_DELETE = discord.Color.red()
COLOR_EDIT = discord.Color.orange()