Update various configuration files, components, and assets; enhance notification system and API endpoints; improve documentation and styles across the application.

This commit is contained in:
Haqeem Solehan
2025-10-16 16:05:39 +08:00
commit b124ff8092
336 changed files with 94392 additions and 0 deletions

16
.env.example Normal file
View File

@@ -0,0 +1,16 @@
# Email Configuration for Nodemailer (Mailtrap SMTP)
# For Mailtrap: Use live.smtp.mailtrap.io for production sending
# Ports: 587 (recommended), 465, 2525, or 25
# Auth: PLAIN or LOGIN
# TLS: Required (STARTTLS on 587, 2525, 25; Forced TLS on 465)
SMTP_HOST=live.smtp.mailtrap.io
SMTP_PORT=587
SMTP_SECURE=false
SMTP_USER=apismtp@mailtrap.io
SMTP_PASS=your-mailtrap-api-token
SMTP_FROM=noreply@yourcompany.com
# Database Configuration
DATABASE_URL="your-database-url"
# Other configuration...