ramadanproject/docs/PORTS.md
Ahmed Darrazi 45a147253c
Some checks failed
tests / ci (push) Failing after 6m13s
linter / quality (pull_request) Failing after 58s
linter / quality (push) Failing after 1m19s
tests / ci (pull_request) Failing after 5m28s
feat(public-grid): add QA, quickstart, decision docs; scheduler docs; ignore files; tasks updates; run pint
2026-01-03 04:56:12 +01:00

17 lines
605 B
Markdown

Ports and overriding defaults
The project exposes a few services on host ports. By default the project uses these environment variables (see `.env`):
- `APP_PORT` — the host port mapped to the container HTTP port (default `8080`).
- `VITE_PORT` — Vite dev server port (default `5173`).
- `FORWARD_REDIS_PORT` / `REDIS_PORT` — Redis host port (default `6380`).
To change them, edit `.env` and restart Sail:
```bash
./vendor/bin/sail down
./vendor/bin/sail up -d
```
If another application uses the same host ports, pick unused ports (for example `8081` or `6381`) and update `.env` accordingly.