Initial commit - Current state of vip-coordinator
This commit is contained in:
24
PRODUCTION_ENVIRONMENT_TEMPLATE.md
Normal file
24
PRODUCTION_ENVIRONMENT_TEMPLATE.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# Production Environment Variables
|
||||
|
||||
Copy this template to your deployment secrets manager or `.env` file before bringing up the production stack.
|
||||
|
||||
```bash
|
||||
# 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.
|
||||
|
||||
Reference in New Issue
Block a user