29 lines
900 B
Plaintext
29 lines
900 B
Plaintext
# Production Environment Configuration
|
|
# Set these values in your production environment
|
|
|
|
# Application URLs and CORS Configuration
|
|
# Replace with your actual production URL
|
|
STORYCOVE_PUBLIC_URL=https://storycove.hardegger.io
|
|
STORYCOVE_CORS_ALLOWED_ORIGINS=https://storycove.hardegger.io
|
|
|
|
# Database Configuration
|
|
# Use a strong password in production
|
|
DB_PASSWORD=REPLACE_WITH_SECURE_PASSWORD
|
|
|
|
# JWT Configuration
|
|
# Use a strong, random secret in production
|
|
JWT_SECRET=REPLACE_WITH_SECURE_JWT_SECRET_MINIMUM_32_CHARS
|
|
|
|
# Application Authentication
|
|
# Use a strong password in production
|
|
APP_PASSWORD=REPLACE_WITH_SECURE_APP_PASSWORD
|
|
|
|
# OpenSearch Configuration
|
|
OPENSEARCH_PASSWORD=REPLACE_WITH_SECURE_OPENSEARCH_PASSWORD
|
|
SEARCH_ENGINE=opensearch
|
|
|
|
# Image Storage
|
|
IMAGE_STORAGE_PATH=/app/images
|
|
|
|
# Frontend API URL (not used in Docker, but can be set for external deployments)
|
|
NEXT_PUBLIC_API_URL=/api |