18 lines
400 B
Python
18 lines
400 B
Python
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() |