-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: scaffold fsnetman CLI with ES6 support (#424)
Signed-off-by: Lenin Mehedy <lenin.mehedy@swirldslabs.com>
- Loading branch information
1 parent
338cf40
commit 65e06d9
Showing
14 changed files
with
1,232 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -513,3 +513,4 @@ secring.* | |
dev/local-node/config.txt | ||
dev/temp/.env | ||
charts/deleteme.yaml | ||
node_modules |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# fullstack-network-manager CLI | ||
|
||
fullstack-network-manager is a CLI tool to manage and deploy a Hedera Network using Helm chart for local testing. | ||
|
||
## Install | ||
- Run `nmp -i hedera/fullstack-network-manager` | ||
- In order to install directly from this repository, run `npm link` | ||
- Once installed, the CLI will available as the following aliases: | ||
- `fsnetman` | ||
|
||
## Command Examples | ||
|
||
``` | ||
❯ fsnetman | ||
Usage: fsnetman <command> [options] | ||
Commands: | ||
fsnetman init Initialize local environment | ||
fsnetman cluster Manager FST cluster | ||
Options: | ||
-h, --help Show help [boolean] | ||
-v, --version Show version number [boolean] | ||
Select a command | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/usr/bin/env node | ||
import * as fnm from './src/index.mjs' |
Oops, something went wrong.