omnichannel-deploy/.env.example

18 lines
402 B
Plaintext
Raw Normal View History

2026-03-31 18:14:52 -03:00
# Deploy (docker-compose) environment variables
# Postgres (used by postgres service)
POSTGRES_USER=omnichannel
POSTGRES_PASSWORD=change-me
POSTGRES_DB=omnichannel
# App database connection (used by backend)
DB_HOST=postgres
DB_PORT=5432
DB_USER=omnichannel
DB_PASSWORD=change-me
DB_NAME=omnichannel
# Ports (optional, if you want to reference in compose later)
FRONTEND_PORT=3000
BACKEND_PORT=3001