29 lines
708 B
Plaintext
29 lines
708 B
Plaintext
# Dokploy Environment Variables
|
|
# Use these values in your Dokploy environment variables section
|
|
|
|
NODE_ENV=production
|
|
APP_PORT=5173
|
|
|
|
# Database (uses Docker volume)
|
|
DATABASE_URL=file:/app/data/production.db
|
|
|
|
# Security - CHANGE THESE VALUES!
|
|
SESSION_SECRET=your-super-secure-session-secret-change-this-in-production-min-32-chars
|
|
SUPER_ADMIN=superadmin
|
|
SUPER_ADMIN_EMAIL=admin@yourcompany.com
|
|
SUPER_ADMIN_PASSWORD=YourSecurePassword123!
|
|
|
|
# Domain (set to your actual domain)
|
|
DOMAIN=your-domain.com
|
|
|
|
# Mail Settings (optional - for password reset features)
|
|
MAIL_HOST=
|
|
MAIL_PORT=587
|
|
MAIL_SECURE=false
|
|
MAIL_USERNAME=
|
|
MAIL_PASSWORD=
|
|
MAIL_FROM_NAME=Phosphat Report System
|
|
MAIL_FROM_EMAIL=
|
|
|
|
# Logging
|
|
LOG_LEVEL=info |