create-rindle 0.9.0 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -76,9 +76,9 @@ pnpm rindle:migrate:cloud # push migrations/*.sql to the deployed write-mast
|
|
|
76
76
|
|
|
77
77
|
`rindle deploy` reads `rindle.ncl` and records the binding in `.rindle/cloud.json` — commit it, so
|
|
78
78
|
future deploys re-attach to the same app. `followers = 1` provisions a backed-up write-master + one
|
|
79
|
-
follower (`replicated`, scales 1→N in place); raise it for more read replicas (`read-scaled`)
|
|
80
|
-
|
|
81
|
-
|
|
79
|
+
follower (`replicated`, scales 1→N in place); raise it for more read replicas (`read-scaled`).
|
|
80
|
+
Every rung ships its journal off-box — the old one-box `colocated` rung (`localRetention = true`)
|
|
81
|
+
is retired, and setting that field fails the render. That deploys the **data tier**; the
|
|
82
82
|
**web app** (this Vite/TanStack Start app) deploys to any Node host — configure its server with the
|
|
83
83
|
one fleet ingress (`RINDLE_URL`) and SQL bearer (`RINDLE_DATABASE_TOKEN`). Query leases derive the
|
|
84
84
|
public WebSocket endpoint from that same URL, so there is no browser-side topology setting whether
|
|
@@ -13,8 +13,9 @@
|
|
|
13
13
|
#
|
|
14
14
|
# `app` becomes the cloud display name and groups every component under one app in `rindle ps`.
|
|
15
15
|
# `followers = 1` maps to the cloud `replicated` rung (a separate write-master + one follower,
|
|
16
|
-
# backed up; scales 1→N in place); `followers > 1` maps to `read-scaled`.
|
|
17
|
-
#
|
|
16
|
+
# backed up; scales 1→N in place); `followers > 1` maps to `read-scaled`. Every rung ships its
|
|
17
|
+
# journal off-box; the old one-box `colocated` rung (`localRetention = true`) is retired, and
|
|
18
|
+
# setting that field fails the render.
|
|
18
19
|
#
|
|
19
20
|
# Every follower count renders a local fleet edge;
|
|
20
21
|
# FOLLOWER-AFFINITY-DESIGN.md §10). `rindle dev` injects the server's unified connection from this
|