Files
yakpanel-core/.env.example

33 lines
922 B
Plaintext
Raw Normal View History

2026-04-07 20:29:49 +05:30
POSTGRES_USER=yakpanel
POSTGRES_PASSWORD=yakpanel_dev_password
POSTGRES_DB=yakpanel
2026-04-07 20:57:48 +05:30
# Host port (container still uses 5432). 15432 avoids clashes with local PostgreSQL.
POSTGRES_PORT=15432
2026-04-07 20:29:49 +05:30
2026-04-07 20:57:48 +05:30
# Host port (container still uses 6379). 16379 avoids clashes with local Redis.
REDIS_PORT=16379
2026-04-07 20:29:49 +05:30
2026-04-07 20:57:48 +05:30
# Host ports for NATS (14222/18222 avoid common local installs).
NATS_PORT=14222
NATS_MONITOR_PORT=18222
2026-04-07 20:29:49 +05:30
MINIO_ROOT_USER=yakpanel
MINIO_ROOT_PASSWORD=yakpanel_minio_password
2026-04-07 20:57:48 +05:30
MINIO_PORT=19000
MINIO_CONSOLE_PORT=19001
2026-04-07 20:29:49 +05:30
2026-04-07 21:35:20 +05:30
# Host port for API scaffold (container still uses 8080).
2026-04-07 20:57:48 +05:30
API_PORT=18080
2026-04-07 21:35:20 +05:30
# Web control panel <20> React UI + FastAPI (nginx proxies /api -> backend)
PANEL_UI_PORT=3080
# Optional: comma-separated origins for direct browser access to API
PANEL_CORS_EXTRA_ORIGINS=
# Observability stack
PROMETHEUS_PORT=19090
GRAFANA_PORT=13000
GRAFANA_ADMIN_USER=admin
GRAFANA_ADMIN_PASSWORD=yakpanel_grafana_admin
CADVISOR_PORT=18081