Skip to content

Commit

Permalink
feat: scaffold a nodeJS cli
Browse files Browse the repository at this point in the history
Signed-off-by: Lenin Mehedy <[email protected]>
  • Loading branch information
leninmehedy committed Oct 19, 2023
1 parent 0fe58c7 commit ffa9864
Show file tree
Hide file tree
Showing 16 changed files with 1,237 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ xcuserdata/

### Eclipse template
.metadata
bin/
tmp/
*.tmp
*.bak
Expand Down Expand Up @@ -513,3 +512,4 @@ secring.*
dev/local-node/config.txt
dev/temp/.env
charts/deleteme.yaml
node_modules
23 changes: 23 additions & 0 deletions cmd/fullstack-network-manager/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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`
- 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
```
2 changes: 2 additions & 0 deletions cmd/fullstack-network-manager/bin/fsnetman.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env node
import * as fsnm from '../src/index.mjs'
Loading

0 comments on commit ffa9864

Please sign in to comment.