30 lines
497 B
Plaintext
30 lines
497 B
Plaintext
# Docker
|
|
PROJECT_NAME=app
|
|
|
|
# Database
|
|
DB_PORT=5432
|
|
DB_NAME=app
|
|
DB_USERNAME=app
|
|
DB_PASSWORD=Strong_Password_123456
|
|
|
|
# Redis
|
|
REDIS_PORT=6379
|
|
|
|
# Backend
|
|
BACK_PORT=4000
|
|
|
|
# How to generate: require('crypto').randomBytes(32).toString('hex')
|
|
JWT_SECRET=...
|
|
JWT_REFRESH_SECRET=...
|
|
|
|
# SMTP
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=465
|
|
SMTP_SECURE=true
|
|
SMTP_USER=user@example.com
|
|
SMTP_PASSWORD=...
|
|
SMTP_FROM=noreply@example.com
|
|
|
|
# Frontend URL (for password reset links etc.)
|
|
FRONTEND_URL=http://localhost:3000
|