Skip to content

Commit

Permalink
version 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
iboss-ptk committed Oct 3, 2023
1 parent 60de523 commit 5636991
Show file tree
Hide file tree
Showing 13 changed files with 1,021 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "CosmWasm swiss-army knife configured for Osmosis by default, but
edition = "2021"
license = "MIT OR Apache-2.0"
name = "beaker"
version = "0.1.6"
version = "0.1.7"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
55 changes: 55 additions & 0 deletions packages/cli/docs/commands/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# `beaker`

CosmWasm swiss-army knife configured for Osmosis by default, but trivial to make it work for other CosmWasm enabled chain.

Version: 0.1.7

## Subcommands

---

### `beaker new`

Create new workspace from boilerplate

Arguments:

* `<NAME>` Workspace name

* `-t / --target-dir <TARGET_DIR>`: Path to store generated workspace

* `-b / --branch <BRANCH>`: Template's branch, using main if not specified

---

### `beaker wasm`

Manipulating and interacting with CosmWasm contract

[\> `beaker wasm`'s subcommands](./beaker_wasm.md)

---

### `beaker key`

Managing key backed by system's secret store

[\> `beaker key`'s subcommands](./beaker_key.md)

---

### `beaker console`

Launch interactive console for interacting with the project

Arguments:

* `-n / --network <NETWORK>` (default: `local`)

---

### `beaker task`

Managing tasks for the project

[\> `beaker task`'s subcommands](./beaker_task.md)
55 changes: 55 additions & 0 deletions packages/cli/docs/commands/beaker_key.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# `beaker key`

Managing key backed by system's secret store

## Subcommands

---

### `beaker key set`

Create new key or update existing key

Arguments:

* `<NAME>` Name of the key to create or update

* `<MNEMONIC>` Mnemonic string to store as an entry

* `-y / --yes <YES>`: Agree to all prompts

---

### `beaker key delete`

Delete existing key

Arguments:

* `<NAME>` Name of the key to create or update

* `-y / --yes <YES>`: Agree to all prompts

---

### `beaker key address`

Get address from keyring's stored key

Arguments:

* `<NAME>` Name of the key to create or update

---

### `beaker key generate`

Generate new mnemonic

Arguments:

* `<NAME>` Name of the key to create or update

* `--show <SHOW>`: Show mnemonic in the console if set, keep it secret otherwise

* `-y / --yes <YES>`: Agree to all prompts
27 changes: 27 additions & 0 deletions packages/cli/docs/commands/beaker_task.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# `beaker task`

Managing tasks for the project

## Subcommands

---

### `beaker task new`

Create a new task

Arguments:

* `<TASK>` Name of the task

---

### `beaker task run`

Run a task

Arguments:

* `<SCRIPT>` Name of the task

* `<ARGS>`
Loading

0 comments on commit 5636991

Please sign in to comment.