likwid/compose/.env.production.example
Marco Allegretti a6eefd792a compose: modify 5 files
Verified changes:
- modify compose/.env.demo.example
- modify compose/.env.production.example
- modify compose/demo.yml
- modify compose/dev.yml
- modify compose/production.yml

Diffstat:
- 5 files changed, 13 insertions(+), 5 deletions(-)
2026-01-29 00:40:11 +01:00

19 lines
429 B
Text

# Production Environment Configuration
# Copy to .env.production and fill in values
# Database
POSTGRES_USER=likwid
POSTGRES_PASSWORD=CHANGE_THIS_STRONG_PASSWORD
POSTGRES_DB=likwid_prod
DB_PORT=5432
# Backend
JWT_SECRET=CHANGE_THIS_TO_RANDOM_64_CHAR_STRING
BACKEND_PORT=3000
# Frontend
FRONTEND_PORT=4321
API_BASE=https://your-domain.com
INTERNAL_API_BASE=http://backend:3000
# Note: DEMO_MODE is always false for production