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

WIP Rename the binary to ff #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ categories = [
"wasm",
]

[[bin]]
name = "ff"
path = "src/main.rs"

[dependencies]
# Simpler error handling
anyhow = "1.0.86"
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,17 @@ Swiss army knife CLI tool for working with [Firefly Zero](https://fireflyzero.co

## 🔧 Usage

Some of the most commonly used commands:

```bash
# build an app and install it into VFS
firefly_cli build
ff build

# export an app installed in VFS
firefly_cli export --author sys --app input-test
ff export --author sys --app input-test

# install an exported app into VFS
firefly_cli import sys.input-test.zip
ff import sys.input-test.zip
```

Run `ff --help` to see the full list of available commands.
Loading