stellate 0.0.0 → 1.13.2
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/LICENSE.md +9 -0
- package/README.md +40 -0
- package/build/index.js +1466 -0
- package/build/xdg-open +1066 -0
- package/package.json +59 -6
- package/index.js +0 -1
package/LICENSE.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Stellate, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Stellate CLI
|
|
2
|
+
|
|
3
|
+
The CLI you need to work with Stellate from your CLI. See https://docs.stellate.co/docs/cli for the complete documentation.
|
|
4
|
+
|
|
5
|
+
## Commands
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
login Authenticate the CLI
|
|
9
|
+
init Setup a new Stellate service
|
|
10
|
+
pull Pull the latest gateway config to ${chalk.dim(
|
|
11
|
+
'stellate.yml',
|
|
12
|
+
)}
|
|
13
|
+
ls List all apps
|
|
14
|
+
push Push the latest changes from ${chalk.dim('stellate.yml')}
|
|
15
|
+
serve Use your local backend with Stellate’s GraphQL Edge Cache (BETA)
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
every one of these can be suffixed with `--help` for additional information.
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
To install our dependencies
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
yarn
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Building
|
|
29
|
+
|
|
30
|
+
To build the output
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
yarn build
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
When we want to use the CLI locally we can run it by doing
|
|
37
|
+
|
|
38
|
+
```sh
|
|
39
|
+
node ./build/index.js
|
|
40
|
+
```
|