-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from gevulotnetwork/0.1.3-pre
0.1.3 pre-release changes
- Loading branch information
Showing
4 changed files
with
133 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,70 @@ | ||
# gvltctl | ||
# Gevulot Control CLI | ||
|
||
This tool is used to interact with Gevulot Network. | ||
|
||
## Installation | ||
|
||
### Pre-built releases | ||
|
||
You can download pre-built release binaries from [releases](https://github.com/gevulotnetwork/gvltctl/releases): | ||
|
||
Supported platforms: | ||
|
||
- `x86_64-unknown-linux-gnu` | ||
- `x86_64-apple-darwin` | ||
- `aarch64-apple-darwin` | ||
|
||
#### Installation of pre-built release | ||
|
||
1. Download archive | ||
|
||
```shell | ||
curl -fLO https://github.com/gevulotnetwork/gvltctl/releases/download/${VERSION}/gvltctl-${PLATFORM}.tar.gz | ||
``` | ||
|
||
2. (Optional) Verify checksum | ||
|
||
```shell | ||
curl -fLO https://github.com/gevulotnetwork/gvltctl/releases/download/${VERSION}/gvltctl-${PLATFORM}.tar.gz.sha256 | ||
sha256sum -c gvltctl-${PLATFORM}.tar.gz.sha256 | ||
``` | ||
|
||
3. Install the binary | ||
|
||
```shell | ||
tar xf gvltctl-${PLATFORM}.tar.gz | ||
cp gvltctl-${PLATFORM}/gvltctl $HOME/.local/bin | ||
``` | ||
|
||
### Compiling from sources | ||
|
||
```shell | ||
cargo install --git https://github.com/gevulotnetwork/gvltctl.git --tag $VERSION | ||
``` | ||
|
||
## Usage | ||
|
||
```shell | ||
$ gvltctl --help | ||
Gevulot Control CLI | ||
Usage: gvltctl <COMMAND> | ||
Commands: | ||
worker Commands related to workers | ||
pin Commands related to pins | ||
task Commands related to tasks | ||
workflow Commands related to workflows | ||
keygen Generate a new key | ||
compute-key Compute a key | ||
send Send tokens to a receiver on the Gevulot network | ||
account-info Get the balance of the given account | ||
generate-completion Generate shell completion scripts | ||
sudo Perform administrative operations with sudo privileges | ||
build Build a VM image from a container, rootfs directory, or Containerfile | ||
help Print this message or the help of the given subcommand(s) | ||
Options: | ||
-h, --help Print help | ||
-V, --version Print version | ||
``` |