mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-30 09:22:31 +00:00
19 lines
641 B
Plaintext
19 lines
641 B
Plaintext
# Database Configuration
|
|
# PostgreSQL connection string for the Minikura database
|
|
DATABASE_URL="postgresql://user:password@localhost:5432/minikura"
|
|
|
|
# Web Application
|
|
# URL where the web frontend is running (used for CORS)
|
|
WEB_URL="http://localhost:3001"
|
|
|
|
# API URL that the web frontend should connect to
|
|
NEXT_PUBLIC_API_URL="http://localhost:3000"
|
|
|
|
# Kubernetes Configuration
|
|
KUBERNETES_NAMESPACE="minikura"
|
|
|
|
# Kubernetes Operator Configuration
|
|
# Enable CRD reflection to automatically sync database state to Kubernetes Custom Resources
|
|
# Set to "false" to disable automatic CRD creation from database entries
|
|
ENABLE_CRD_REFLECTION="true"
|