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

@@ -1,6 +1,6 @@
# YakPanel Ubuntu Dev Install
This setup brings up the YakPanel 2026 scaffold stack on Ubuntu 22.04/24.04.
This setup brings up the YakPanel 2026 stack on Ubuntu 22.04/24.04.
## Clone the repository
@@ -39,11 +39,16 @@ make down
## Services
Host ports are defined in `.env` (see `.env.example`). Defaults avoid common conflicts:
- API health: `http://localhost:18080/health` (`API_PORT`)
- **Web control panel (full UI):** `http://localhost:3080/` (`PANEL_UI_PORT`) — default login `admin` / `admin` (change immediately). API is proxied at `/api`.
- Laravel scaffold API health: `http://localhost:18080/health` (`API_PORT`)
- PostgreSQL: `localhost:15432` (`POSTGRES_PORT`)
- Redis: `localhost:16379` (`REDIS_PORT`)
- NATS monitor: `http://localhost:18222` (`NATS_MONITOR_PORT`)
- MinIO console: `http://localhost:19001` (`MINIO_CONSOLE_PORT`)
- Prometheus: `http://localhost:19090` (`PROMETHEUS_PORT`)
- Grafana: `http://localhost:13000` (`GRAFANA_PORT`)
First boot builds Docker images for `YakPanel-server` (backend + frontend); this can take several minutes.
## Troubleshooting
@@ -76,7 +81,5 @@ bash scripts/docker-compose.sh up -d --build
Or edit `.env` manually (raise `REDIS_PORT`, `POSTGRES_PORT`, etc.).
## Notes
- This is a development scaffold for the architecture implementation.
- `panel-api` currently serves a minimal runtime entrypoint for health and bootstrap validation.
- Full Laravel production bootstrap (artisan app, providers, migrations runtime wiring) is the next implementation step.
- This is a development-first integrated stack with a real control panel UI and supporting services.
- Database schema is automatically applied by `db-migrate` during bootstrap and can be re-run with `make migrate`.