feat: Add Discord routes and configuration for bot key validation

This commit is contained in:
MrEisbear 2025-09-24 19:16:46 -05:00
parent df2242ea44
commit e09463b59c
5 changed files with 41 additions and 1 deletions

View file

@ -9,6 +9,9 @@ class Config:
# General Config
JWT_KEY = os.getenv('JWT_KEY')
JWT_EXPIRE = int(os.getenv('JWT_EXPIRATION', 30))
# Gets the Key to ensure discord bot requests are being done by the discord bot
BOT_KEY = os.getenv('BOT_KEY')
# Database
DB_HOST = os.getenv('DB_HOST')