14 lines
381 B
Bash
14 lines
381 B
Bash
# Copy this file to .env before running docker compose.
|
|
# Do NOT commit your real .env file.
|
|
|
|
# Postgres container password (use a strong random string)
|
|
POSTGRES_PASSWORD=replace-with-strong-password
|
|
|
|
# Database name used by the app
|
|
POSTGRES_DB=crm_omt
|
|
|
|
# Seed admin user created on first DB initialization
|
|
ADMIN_EMAIL=admin@local.test
|
|
ADMIN_PASSWORD=ChangeMe123!
|
|
ADMIN_NAME=Owner
|