Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: scaffold fsnetman CLI with ES6 support #424

Merged
merged 9 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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