2026-02-14 13:41:28 +03:00
|
|
|
# Docker
|
2026-02-14 13:53:51 +03:00
|
|
|
PROJECT_NAME="hermes"
|
2026-02-14 13:41:28 +03:00
|
|
|
|
|
|
|
|
# Database
|
|
|
|
|
DB_PORT=5432
|
2026-02-14 13:55:55 +03:00
|
|
|
DB_NAME="hermes"
|
|
|
|
|
DB_USERNAME="hermes"
|
2026-02-14 13:41:28 +03:00
|
|
|
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"
|