13 lines
611 B
Text
13 lines
611 B
Text
# Production Environment Configuration
|
|
# This file contains production-specific environment variables
|
|
# DO NOT commit sensitive values - use secrets management in production
|
|
|
|
# CORS Configuration
|
|
# Required in production - empty CORS_ALLOWED_ORIGINS will reject all CORS requests
|
|
# This makes the service inaccessible from frontend
|
|
CORS_ALLOWED_ORIGINS=https://app.veza.com,https://www.veza.com
|
|
|
|
# Note: Other production variables should be set via:
|
|
# - Environment variables in your deployment platform
|
|
# - Secrets management system (e.g., Kubernetes secrets, AWS Secrets Manager)
|
|
# - CI/CD pipeline variables
|