2026-04-23 15:33:11 +03:30
|
|
|
# Docker Hub Configuration
|
|
|
|
|
DOCKER_USERNAME=yourdockerhub
|
|
|
|
|
TAG=v1.0.0
|
|
|
|
|
|
|
|
|
|
# Domain Configuration
|
|
|
|
|
DOMAIN=dyolink.com
|
|
|
|
|
|
|
|
|
|
# Database Environment (create database.env from this)
|
|
|
|
|
# POSTGRES_USER=dyolink_user
|
|
|
|
|
# POSTGRES_PASSWORD=CHANGE_THIS_IN_PRODUCTION
|
|
|
|
|
# POSTGRES_DB=dyolink_db
|
|
|
|
|
|
|
|
|
|
# Backend Environment (create backend.env from this)
|
|
|
|
|
# NODE_ENV=production
|
2026-05-16 22:40:42 +03:30
|
|
|
# PORT=3000
|
2026-04-23 15:33:11 +03:30
|
|
|
# DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}
|
2026-05-16 22:40:42 +03:30
|
|
|
# JWT_SECRET=CHANGE_THIS_TO_STRONG_SECRET_32_CHARS
|
|
|
|
|
# JWT_EXPIRES_IN=15m
|
|
|
|
|
# JWT_REFRESH_SECRET=another_long_random_secret_different_from_JWT_SECRET
|
|
|
|
|
# JWT_REFRESH_EXPIRES_IN=30d
|
|
|
|
|
# FRONTEND_URL=https://dyolink.com
|
2026-07-07 15:32:25 +03:30
|
|
|
# SMS_IR_API_KEY=CHANGE_ME_SMS_IR_API_KEY
|
|
|
|
|
# SMS_IR_TEMPLATE_ID=123456
|
2026-04-23 15:33:11 +03:30
|
|
|
|
|
|
|
|
# Frontend Environment (create frontend.env from this)
|
|
|
|
|
# NEXT_PUBLIC_API_URL=/api
|
|
|
|
|
# NEXT_PUBLIC_APP_NAME=Dyolink
|
2026-05-03 20:15:39 +03:30
|
|
|
# NEXT_PUBLIC_APP_URL=https://dyolink.com
|
|
|
|
|
|
|
|
|
|
# --- Staging on your server (docker-compose.staging.yml) ---
|
|
|
|
|
# See env.staging.example, database.staging.env.example, backend.staging.env.example
|