717 B
717 B
Production Environment Variables
Copy this template to your deployment secrets manager or .env file before bringing up the production stack.
# PostgreSQL
DB_PASSWORD=change-me
# Backend application
FRONTEND_URL=https://your-domain.com
# Auth0 configuration
AUTH0_DOMAIN=your-tenant.region.auth0.com
AUTH0_CLIENT_ID=your-auth0-client-id
AUTH0_CLIENT_SECRET=your-auth0-client-secret
AUTH0_AUDIENCE=https://your-api-identifier (create an API in Auth0 and use its identifier)
INITIAL_ADMIN_EMAILS=primary.admin@example.com,another.admin@example.com
# Optional third-party integrations
AVIATIONSTACK_API_KEY=
⚠️ Never commit real secrets to version control. Use this file as a reference only.