Skip to Content
SDK & ClientDart / Flutter SDKServer Setup & Diagnostics Boundary

Server Setup & Diagnostics Boundary

The current Dart SDK intentionally focuses on app-facing query, auth, and live-subscription flows.

It does not expose a dedicated healthCheck() helper, topic consumer APIs, or initial server bootstrap helpers.

How to verify server status instead

Use one of the existing server-facing tools instead:

  • the Admin UI / SQL Studio
  • the documented HTTP API endpoints
  • the server CLI and deployment flows
  • your app’s normal authenticated query path (SELECT 1, namespace reads, etc.)

Initial server setup

The current Dart SDK does not expose checkSetupStatus() or serverSetup() helpers.

For first-time server bootstrap, use one of the documented server-side flows instead:

Next

Last updated on