mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-09-13 18:59:25 +00:00
32 lines
1.3 KiB
Bash
32 lines
1.3 KiB
Bash
# 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"
|
|
|
|
# Internal API URL used by the Next.js server and same-origin browser proxy
|
|
API_URL="http://localhost:3000"
|
|
|
|
# Kubernetes Configuration
|
|
KUBERNETES_NAMESPACE="minikura"
|
|
|
|
# Base API URL reachable from operator-managed proxy pods
|
|
MINIKURA_OPERATOR_BACKEND_URL="http://minikura-backend:3000/api"
|
|
|
|
# Comma-separated download URLs for RedisBungee and the shaded Minikura Velocity plugin JAR
|
|
# MINIKURA_VELOCITY_PLUGIN_URL="https://example.com/redisbungee.jar,https://example.com/minikura-velocity.jar"
|
|
|
|
# Plugin registry and S3-compatible artifact storage
|
|
PLUGIN_REGISTRY_USER_AGENT="Minikura/1.0 (https://github.com/YuzuZensai/Minikura)"
|
|
# The devcontainer supplies http://minio:9000 internally and exposes it on host port 9002.
|
|
S3_ENDPOINT="http://localhost:9000"
|
|
S3_REGION="us-east-1"
|
|
S3_BUCKET="minikura-plugins"
|
|
S3_ACCESS_KEY_ID="minikura"
|
|
S3_SECRET_ACCESS_KEY="minikura-development"
|
|
S3_FORCE_PATH_STYLE="true"
|
|
# URL reachable by Minecraft pods. Defaults to MINIKURA_OPERATOR_BACKEND_URL.
|
|
# MINIKURA_PLUGIN_DOWNLOAD_BASE_URL="http://minikura-backend:3000/api"
|