/gws-up
Start the GWS environment for the current project. Type /gws-up inside your AI agent and it will deploy, verify, and report.
When to use it
- You want to start a previously-set-up project without manually checking pod health afterwards
- You want a single command that "starts and confirms it's actually working"
What it does
- Confirms the project is registered — runs
gws status. If the project isn't registered with the API, it stops and tells you to run/gws-setupfirst. - Brings the environment up —
gws up -y(non-interactive). - Reports deployment status — calls
gws status --jsonand parses per-service pod state (Running,Pending,CrashLoopBackOff), restart counts, service URLs, and file-sync session state. - HTTP-probes every URL — for each gateway-routed service URL, performs a
GETand reports the status code or connection error. - Hands off on failure — if any service is unhealthy or any URL fails to respond, suggests
/gws-debug.
See also
/gws-setup— required first run for a new project/gws-status— same health report without re-deploying/gws-debug— invoked when something is unhealthygws up,gws status— the underlying CLI commands