Skip to content

Commit

Permalink
feat: scaffold fsnetman CLI with ES6 support (#424)
Browse files Browse the repository at this point in the history
Signed-off-by: Lenin Mehedy <lenin.mehedy@swirldslabs.com>
  • Loading branch information
leninmehedy committed Oct 19, 2023
1 parent 338cf40 commit 65e06d9
Show file tree
Hide file tree
Showing 14 changed files with 1,232 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -513,3 +513,4 @@ secring.*
dev/local-node/config.txt
dev/temp/.env
charts/deleteme.yaml
node_modules
26 changes: 26 additions & 0 deletions fullstack-network-manager/README.md
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
```
2 changes: 2 additions & 0 deletions fullstack-network-manager/fsnetman.mjs
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'
Loading

0 comments on commit 65e06d9

Please sign in to comment.