@c9up/ream-cli-darwin-arm64 0.1.12 → 0.2.0

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.
Files changed (3) hide show
  1. package/README.md +30 -11
  2. package/package.json +1 -1
  3. package/ream +0 -0
package/README.md CHANGED
@@ -10,14 +10,18 @@ npm install -g @c9up/ream-cli
10
10
 
11
11
  ## Commands
12
12
 
13
+ Run `ream --help` (or `ream <command> --help`) for the authoritative, always
14
+ up-to-date list. The current surface:
15
+
13
16
  ```bash
14
- # Create a new project
15
- ream new my-app
17
+ # Scaffolding
18
+ ream new my-app # create a new Ream project
19
+ ream template kitchen-sink # install a project template from its upstream repo
16
20
 
17
21
  # Development
18
- ream dev # start with hot-reload
19
- ream build # compile TypeScript
20
- ream start # run production
22
+ ream dev # dev server (node --watch + swc-node, DI metadata)
23
+ ream build # compile TypeScript to dist/
24
+ ream start # run production (spawns node)
21
25
 
22
26
  # Code generation
23
27
  ream make:controller order Order
@@ -26,15 +30,30 @@ ream make:entity order OrderItem
26
30
  ream make:validator order CreateOrder
27
31
  ream make:provider Stripe
28
32
  ream make:migration create_orders_table
33
+ ream make:seeder OrdersSeeder
34
+ ream make:module order Order # entity + controller + validator + migration
35
+
36
+ # Database
37
+ ream migrate # run pending migrations
38
+ ream migrate:rollback # roll back the last batch
39
+ ream migrate:status # show migration status
40
+
41
+ # Packages
42
+ ream add @c9up/atlas # install a package AND run its configure() hook
43
+ ream configure @c9up/photon # (re-)run a package's configure() hook
44
+
45
+ # Scheduling
46
+ ream schedule:list # list registered scheduled tasks
47
+ ream schedule:run <task> # run one task now (admin override)
29
48
 
30
- # Package management
31
- ream configure @c9up/atlas
32
- ream configure @c9up/photon
33
- ream configure @c9up/warden
49
+ # Integrations / tooling
50
+ ream mcp # manage the Ream MCP server registration (.mcp.json)
51
+ ream nova:vapid:generate # generate Web Push VAPID keys into .env
52
+ ream inspect # inspect routes, providers, decorated services
34
53
 
35
54
  # Diagnostics
36
- ream doctor
37
- ream info
55
+ ream doctor # environment health checks
56
+ ream info # version info
38
57
  ```
39
58
 
40
59
  ## Build from source
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c9up/ream-cli-darwin-arm64",
3
- "version": "0.1.12",
3
+ "version": "0.2.0",
4
4
  "os": ["darwin"],
5
5
  "cpu": ["arm64"],
6
6
  "bin": { "ream": "./ream" }
package/ream CHANGED
Binary file