- Implemented AutoMod capabilities including spam filtering, anti-raid, and anti-nuke actions. - Added Logging module to track moderation actions and events across the bot. - Introduced Welcome module for customizable welcome messages and autoroles. - Developed Verification system with captcha and role assignment features. - Updated Prisma schema to include new models for AutoMod, Logging, Welcome, and Verification. - Enhanced command localization for new features in both German and English. - Improved health server to handle captcha verification requests. - Added new environment variable for public base URL to support captcha links.
16 lines
333 B
Plaintext
16 lines
333 B
Plaintext
NODE_ENV=development
|
|
BOT_TOKEN=
|
|
BOT_CLIENT_ID=
|
|
BOT_GUILD_ID=
|
|
DATABASE_URL=postgresql://nexumi:nexumi@postgres:5432/nexumi
|
|
REDIS_URL=redis://redis:6379
|
|
LOG_LEVEL=info
|
|
DEFAULT_LOCALE=de
|
|
METRICS_TOKEN=
|
|
SENTRY_DSN=
|
|
BACKUP_RETENTION_DAYS=14
|
|
BACKUP_CRON=0 3 * * *
|
|
BACKUP_DIR=/backups
|
|
HEALTH_PORT=8080
|
|
PUBLIC_BASE_URL=http://localhost:8080
|