18 lines
543 B
Bash
18 lines
543 B
Bash
# Database Configuration
|
|||
|
|
POSTGRES_DB=mobile_mgmt
|
||
|
|
POSTGRES_USER=app_user
|
||
|
|
POSTGRES_PASSWORD=StrongDBPassword123!
|
||
|
|
|
||
|
|
# JWT Secrets (change these in production!)
|
||
|
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production-min-32-chars
|
||
|
|
JWT_REFRESH_SECRET=your-super-secret-refresh-key-change-this-in-production-min-32-chars
|
||
|
|
|
||
|
|
# Encryption key for MFA secrets (must be exactly 32 chars)
|
||
|
|
ENCRYPTION_KEY=12345678901234567890123456789012
|
||
|
|
|
||
|
|
# App host IP (0.0.0.0 = all interfaces, or specify e.g. 192.168.1.100)
|
||
|
|
APP_HOST=0.0.0.0
|
||
|
|
|
||
|
|
# App port
|
||
|
|
APP_PORT=80
|