20 lines
590 B
Bash
20 lines
590 B
Bash
# Database
|
|
POSTGRES_USER=techxcar
|
|
POSTGRES_PASSWORD=changeme
|
|
POSTGRES_DB=techxcar
|
|
|
|
# Backend
|
|
JWT_SECRET=your-super-secret-key-minimum-32-characters
|
|
PORT=8080
|
|
APP_ENV=development
|
|
REDIS_PASSWORD=changeme-redis
|
|
BACKEND_IMAGE=techxcar-backend:latest
|
|
FRONTEND_IMAGE=techxcar-frontend:latest
|
|
|
|
# Initial super-admin — only used on first startup, skipped if already exists
|
|
INITIAL_ADMIN_EMAIL=admin@techxcar.com
|
|
INITIAL_ADMIN_PASSWORD=change-me-on-first-login
|
|
|
|
# SMTP, Telegram and other integration settings are configured
|
|
# post-deploy via the Web UI Settings panel (stored in DB, not in .env)
|