supabase-stateful 0.1.7 → 0.1.9
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/README.md +7 -2
- package/package.json +11 -2
package/README.md
CHANGED
|
@@ -63,12 +63,17 @@ Migrations run **on top of your existing data**, not on an empty database.
|
|
|
63
63
|
| Command | Description |
|
|
64
64
|
|---------|-------------|
|
|
65
65
|
| `setup` | Interactive setup wizard |
|
|
66
|
-
| `
|
|
67
|
-
| `
|
|
66
|
+
| `init` | Basic init (just npm scripts, no client files) |
|
|
67
|
+
| `start` | Start Supabase and restore saved state |
|
|
68
|
+
| `stop` | Save state and stop Supabase |
|
|
68
69
|
| `status` | Show current status |
|
|
69
70
|
| `add` | Add a service to dev:local (e.g., Inngest, ngrok) |
|
|
70
71
|
| `remove` | Remove a service from dev:local |
|
|
71
72
|
| `services` | List configured services |
|
|
73
|
+
| `sync` | Sync cloud data to local database |
|
|
74
|
+
| `export` | Export cloud data to seed file |
|
|
75
|
+
|
|
76
|
+
Run `npx supabase-stateful --help` for all options.
|
|
72
77
|
|
|
73
78
|
## Deployment
|
|
74
79
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supabase-stateful",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Persistent local state for Supabase development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,7 +16,16 @@
|
|
|
16
16
|
"development",
|
|
17
17
|
"database",
|
|
18
18
|
"state",
|
|
19
|
-
"persistence"
|
|
19
|
+
"persistence",
|
|
20
|
+
"nextjs",
|
|
21
|
+
"next",
|
|
22
|
+
"postgres",
|
|
23
|
+
"docker",
|
|
24
|
+
"cli",
|
|
25
|
+
"developer-tools",
|
|
26
|
+
"migrations",
|
|
27
|
+
"testing",
|
|
28
|
+
"seed-data"
|
|
20
29
|
],
|
|
21
30
|
"author": "Anthony Grant",
|
|
22
31
|
"license": "MIT",
|