@c9up/ream-cli-darwin-arm64 0.1.1 → 0.1.4
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 +49 -0
- package/package.json +1 -1
- package/ream +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# ream
|
|
2
|
+
|
|
3
|
+
Rust-native CLI for the Ream framework. Instant startup, no Node.js boot penalty.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @c9up/ream-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Commands
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Create a new project
|
|
15
|
+
ream new my-app
|
|
16
|
+
|
|
17
|
+
# Development
|
|
18
|
+
ream dev # start with hot-reload
|
|
19
|
+
ream build # compile TypeScript
|
|
20
|
+
ream start # run production
|
|
21
|
+
|
|
22
|
+
# Code generation
|
|
23
|
+
ream make:controller order Order
|
|
24
|
+
ream make:service order Payment
|
|
25
|
+
ream make:entity order OrderItem
|
|
26
|
+
ream make:validator order CreateOrder
|
|
27
|
+
ream make:provider Stripe
|
|
28
|
+
ream make:migration create_orders_table
|
|
29
|
+
|
|
30
|
+
# Package management
|
|
31
|
+
ream configure @c9up/atlas
|
|
32
|
+
ream configure @c9up/photon
|
|
33
|
+
ream configure @c9up/warden
|
|
34
|
+
|
|
35
|
+
# Diagnostics
|
|
36
|
+
ream doctor
|
|
37
|
+
ream info
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Build from source
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
cargo build --release
|
|
44
|
+
# Binary at target/release/ream
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
MIT
|
package/package.json
CHANGED
package/ream
CHANGED
|
Binary file
|