Test environment — not production
🧪 AppAI
Second app · same VPS

AppAI test app

A separate Express container from app.flowmateai.cloud, with its own image and its own certificate. Use it to try things out without touching the other deployment.

Request inspector

/inspect shows exactly what reaches the app after Caddy — headers, forwarded IP, protocol.

Echo endpoint

/api/echo accepts any method and returns the request back as JSON, body included.

Status codes on demand

/api/status/:code returns whatever code you ask for — try 503.

Try the echo endpoint

curl -sS -X POST https://appai.flowmateai.cloud/api/echo \
  -H 'Content-Type: application/json' \
  -d '{"hello":"world"}'