hyperstack-cli 0.3.11 → 0.3.13
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 -5
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -28,11 +28,13 @@ cargo install hyperstack-cli
|
|
|
28
28
|
|
|
29
29
|
| Command | Description |
|
|
30
30
|
|---------|-------------|
|
|
31
|
-
| `
|
|
32
|
-
| `
|
|
33
|
-
| `
|
|
34
|
-
| `
|
|
35
|
-
| `
|
|
31
|
+
| `hyperstack-cli create [name]` | Scaffold a new app from a template |
|
|
32
|
+
| `hyperstack-cli init` | Initialize a stack project |
|
|
33
|
+
| `hyperstack-cli up` | Deploy your stack |
|
|
34
|
+
| `hyperstack-cli status` | Show project overview |
|
|
35
|
+
| `hyperstack-cli auth login` | Authenticate with Hyperstack |
|
|
36
|
+
|
|
37
|
+
Note: If installed via Cargo, the command is `hs` instead of `hyperstack-cli`.
|
|
36
38
|
|
|
37
39
|
## Documentation
|
|
38
40
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hyperstack-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.13",
|
|
4
4
|
"description": "Hyperstack CLI - Real-time Solana streaming pipelines",
|
|
5
5
|
"bin": {
|
|
6
|
-
"
|
|
7
|
-
"hyperstack": "./bin/hs.js"
|
|
6
|
+
"hyperstack-cli": "./bin/hs.js"
|
|
8
7
|
},
|
|
9
8
|
"scripts": {
|
|
10
9
|
"postinstall": "node scripts/postinstall.js"
|