TellWang
Dashboard

The stack

A Wok bundles everything a team needs to run software: database, auth, storage, realtime, functions, scheduler, email, SMS, hosting on your domain, and a built-in AI model gateway. Wang turns each piece on as you need it; you never assemble or wire them yourself.

What's inside

Wang flips each piece on as needed — every service ships every Wok by default, but you only pay attention to the ones you use. For the canonical CRUD surface across all of them, see api-reference → Wok internals.

What it looks like in practice

One Wok provisioning + a handful of cp calls = a full functional product. Here's the customer-onboarding portal from the landing page, wired top-to-bottom:

onboarding.sh
# 1. Spin up the Wok
curl -X POST https://tellwang.com/v1/woks \
  -H "Authorization: Bearer $TELLWANG_KEY" -d '{"name":"onboarding"}'

# 2. Schema + RLS in one SQL hit
curl -X POST https://tellwang.com/v1/woks/onboarding/exec_sql \
  -H "Authorization: Bearer $TELLWANG_KEY" \
  -d '{"sql":"create table signups (id serial pk, name text, email text, role text, created_at timestamptz default now()); alter table signups enable row level security;"}'

# 3. Edge function to receive the form POST
curl -X POST https://tellwang.com/v1/woks/onboarding/functions/signup \
  -H "Authorization: Bearer $TELLWANG_KEY" -d @signup-fn.json

# 4. Cron job — Monday 9am digest
curl -X POST https://tellwang.com/v1/woks/onboarding/scheduler/jobs \
  -H "Authorization: Bearer $TELLWANG_KEY" \
  -d '{"name":"monday-digest","schedule":"0 9 * * 1","command":"select net.http_post(...)"}'

# 5. Push the static frontend (same-origin to all Wok services)
curl -X POST https://tellwang.com/v1/woks/onboarding/frontend \
  -H "Authorization: Bearer $TELLWANG_KEY" -d '{"files":{"index.html":"...","app.js":"..."}}'

# Done — live at https://onboarding.tellwang.com

Wang composes the same calls on your behalf when you ask in plain English. Every one of these endpoints is documented in api-reference.

Lean by design

A Wok runs only what it needs — not a pile of services you'll never use. That keeps it fast, cheap to run, and simple to reason about.

All yours to keep (shipped)

Everything in your Wok exports as standard Terraform HCL in one call (GET /v1/woks/{id}/terraform), so you can redeploy it on another cloud, your own account, or self-hosted — see How Wang works → Portable by default for the working example. We earn your business by running it well — not by trapping your data.