Start autonomous Belgium and North Sea RC
This commit is contained in:
+10
-2
@@ -134,10 +134,12 @@ If multiple model files are present, add `--model-file /mnt/user/appdata/geointe
|
||||
The helper does not download weights, does not load a model and does not run
|
||||
inference; it only updates the env file for the mounted local model.
|
||||
|
||||
Validate:
|
||||
Validate liveness, dependency readiness and the canonical API:
|
||||
|
||||
```bash
|
||||
curl -fsS "http://192.168.10.150:${GEOINTEL_FRONTEND_PORT:-1202}/health"
|
||||
curl -fsS "http://192.168.10.150:${GEOINTEL_FRONTEND_PORT:-1202}/health/live"
|
||||
curl -fsS "http://192.168.10.150:${GEOINTEL_FRONTEND_PORT:-1202}/health/ready"
|
||||
curl -fsS "http://192.168.10.150:${GEOINTEL_FRONTEND_PORT:-1202}/api/v1/system/capabilities"
|
||||
curl -fsS "http://192.168.10.150:${GEOINTEL_FRONTEND_PORT:-1202}/api/v1/projects"
|
||||
curl -I "http://192.168.10.150:${GEOINTEL_FRONTEND_PORT:-1202}/geointel-icon.svg"
|
||||
curl -I "http://192.168.10.150:${GEOINTEL_FRONTEND_PORT:-1202}/geointel-icon.png"
|
||||
@@ -204,6 +206,12 @@ OLLAMA_MAX_OUTPUT_TOKENS=1200
|
||||
OLLAMA_CONTEXT_TOKENS=16384
|
||||
```
|
||||
|
||||
`/health/live` proves only that FastAPI is serving. `/health/ready` returns
|
||||
HTTP 503 when PostgreSQL, PostGIS, the migration head or persistent storage is
|
||||
not ready, and is the container healthcheck. The all-in-one startup also marks
|
||||
work left in `running` by a previous process as failed with
|
||||
`PROCESS_INTERRUPTED`; synchronous work cannot survive a container restart.
|
||||
|
||||
The model dropdown comes from Ollama `/api/tags`, so changing the installed
|
||||
models requires no frontend rebuild. Verify after deployment with:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user