@tinycloud-ai/tinycloud-cli 0.1.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.
- package/README.md +32 -0
- package/dist/main.js +1943 -0
- package/dist/main.js.map +7 -0
- package/package.json +46 -0
- package/schema/tiny.v1alpha1.json +234 -0
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Tinycloud CLI
|
|
2
|
+
|
|
3
|
+
The command-line client for deploying and managing governed, isolated internal
|
|
4
|
+
apps on a Tinycloud control plane.
|
|
5
|
+
|
|
6
|
+
Tinycloud runs applications in jailed Firecracker microVMs behind an
|
|
7
|
+
authenticated gateway. The CLI lets you validate, plan, deploy, inspect, and
|
|
8
|
+
manage those applications from any machine with Node.js 22.18 or newer.
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
```sh
|
|
13
|
+
npm install --global @tinycloud-ai/tinycloud-cli
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
The package installs the `tiny` command:
|
|
17
|
+
|
|
18
|
+
```sh
|
|
19
|
+
tiny login --api https://control.example.com --token <token>
|
|
20
|
+
tiny validate --cwd ./my-app
|
|
21
|
+
tiny plan --cwd ./my-app
|
|
22
|
+
tiny deploy --cwd ./my-app
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Run `tiny --help` for the complete command list. Platform and server setup
|
|
26
|
+
documentation is available in the
|
|
27
|
+
[Tinycloud repository](https://github.com/scar-ai/tinycloud).
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
Copyright © Scar AI. All rights reserved. This package is proprietary and is
|
|
32
|
+
not licensed for redistribution or modification.
|