- Add MMDL (Manage My Damn Life) task and calendar management service - Configure NextAuth with Authentik OIDC integration - Use MySQL 8.0 with proper authentication plugin - Include Glance dashboard integration - Add to main docker deployment pipeline 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
1001 B
Django/Jinja
41 lines
1001 B
Django/Jinja
# Database Configuration
|
|
DB_HOST=mmdl_db
|
|
DB_USER=mmdl
|
|
DB_PASS={{ vault_mmdl_mysql_password }}
|
|
DB_PORT=3306
|
|
DB_DIALECT=mysql
|
|
DB_CHARSET=utf8mb4
|
|
DB_NAME=mmdl
|
|
|
|
# Encryption
|
|
AES_PASSWORD={{ vault_mmdl_aes_password }}
|
|
|
|
# SMTP Settings
|
|
SMTP_HOST=smtp.resend.com
|
|
SMTP_USERNAME=resend
|
|
SMTP_PASSWORD={{ resend_key }}
|
|
SMTP_FROM=tasks@updates.thesatelliteoflove.com
|
|
SMTP_PORT=587
|
|
SMTP_SECURE=true
|
|
|
|
# Authentication
|
|
USE_NEXT_AUTH=true
|
|
NEXTAUTH_URL=https://tasks.thesatelliteoflove.com
|
|
NEXTAUTH_SECRET={{ vault_mmdl_nextauth_secret }}
|
|
|
|
# Authentik OIDC Configuration
|
|
AUTHENTIK_ISSUER=https://auth.thesatelliteoflove.com/application/o/mmdl
|
|
AUTHENTIK_CLIENT_ID={{ vault_mmdl_oidc_client_id }}
|
|
AUTHENTIK_CLIENT_SECRET={{ vault_mmdl_oidc_client_secret }}
|
|
|
|
# User and Session Management
|
|
ALLOW_USER_REGISTRATION=false
|
|
MAX_CONCURRENT_LOGINS=3
|
|
OTP_VALIDITY_PERIOD=300
|
|
SESSION_VALIDITY_PERIOD=30
|
|
|
|
# Application Settings
|
|
API_URL=https://tasks.thesatelliteoflove.com
|
|
DEBUG_MODE=false
|
|
TEST_MODE=false
|
|
SUBTASK_RECURSION_DEPTH=5 |