new changes

This commit is contained in:
Niranjan
2026-04-07 21:35:20 +05:30
parent 8e166c8bde
commit ef59e6b403
10 changed files with 196 additions and 11 deletions

View File

@@ -48,11 +48,19 @@ _PG="$(dotenv_get POSTGRES_PORT)"
_RD="$(dotenv_get REDIS_PORT)"
_NATS_MON="$(dotenv_get NATS_MONITOR_PORT)"
_MINIO_C="$(dotenv_get MINIO_CONSOLE_PORT)"
echo "API: http://localhost:${_API}/health"
_PANEL="$(dotenv_get PANEL_UI_PORT)"
_PROM="$(dotenv_get PROMETHEUS_PORT)"
_GRAF="$(dotenv_get GRAFANA_PORT)"
echo "Web control panel: http://localhost:${_PANEL}/ (login: admin / admin — change after first sign-in)"
echo "API (scaffold): http://localhost:${_API}/health"
echo "Panel API (proxied): http://localhost:${_PANEL}/api/health"
echo "PostgreSQL: localhost:${_PG}"
echo "Redis: localhost:${_RD}"
echo "NATS monitor: http://localhost:${_NATS_MON}"
echo "MinIO console: http://localhost:${_MINIO_C}"
echo "Prometheus: http://localhost:${_PROM}"
echo "Grafana: http://localhost:${_GRAF} (admin user from .env)"
echo "(Ports come from .env; defaults avoid system PostgreSQL/Redis on 5432/6379.)"
echo
echo "Docker group is configured; if a future terminal still cannot run docker, log out and back in once."