Skip to content

Commit 8a77648

Browse files
committed
version 0.1.7
1 parent 60de523 commit 8a77648

File tree

13 files changed

+1022
-3
lines changed

13 files changed

+1022
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "CosmWasm swiss-army knife configured for Osmosis by default, but
33
edition = "2021"
44
license = "MIT OR Apache-2.0"
55
name = "beaker"
6-
version = "0.1.6"
6+
version = "0.1.7"
77

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

@@ -34,7 +34,7 @@ tendermint-rpc = {version = "0.32.0", features = ["http-client"]}
3434
textwrap = "0.15.0"
3535
tokio = {version = "1.18.2", features = ["full"]}
3636
toml = "0.5.9"
37-
tonic = {version = "*", features = ["tls", "tls-roots"]}
37+
tonic = {version = "0.9", features = ["tls", "tls-roots"]}
3838

3939
[dev-dependencies]
4040
assert_fs = "1.0.7"

packages/cli/docs/commands/README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# `beaker`
2+
3+
CosmWasm swiss-army knife configured for Osmosis by default, but trivial to make it work for other CosmWasm enabled chain.
4+
5+
Version: 0.1.7
6+
7+
## Subcommands
8+
9+
---
10+
11+
### `beaker new`
12+
13+
Create new workspace from boilerplate
14+
15+
Arguments:
16+
17+
* `<NAME>` Workspace name
18+
19+
* `-t / --target-dir <TARGET_DIR>`: Path to store generated workspace
20+
21+
* `-b / --branch <BRANCH>`: Template's branch, using main if not specified
22+
23+
---
24+
25+
### `beaker wasm`
26+
27+
Manipulating and interacting with CosmWasm contract
28+
29+
[\> `beaker wasm`'s subcommands](./beaker_wasm.md)
30+
31+
---
32+
33+
### `beaker key`
34+
35+
Managing key backed by system's secret store
36+
37+
[\> `beaker key`'s subcommands](./beaker_key.md)
38+
39+
---
40+
41+
### `beaker console`
42+
43+
Launch interactive console for interacting with the project
44+
45+
Arguments:
46+
47+
* `-n / --network <NETWORK>` (default: `local`)
48+
49+
---
50+
51+
### `beaker task`
52+
53+
Managing tasks for the project
54+
55+
[\> `beaker task`'s subcommands](./beaker_task.md)
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# `beaker key`
2+
3+
Managing key backed by system's secret store
4+
5+
## Subcommands
6+
7+
---
8+
9+
### `beaker key set`
10+
11+
Create new key or update existing key
12+
13+
Arguments:
14+
15+
* `<NAME>` Name of the key to create or update
16+
17+
* `<MNEMONIC>` Mnemonic string to store as an entry
18+
19+
* `-y / --yes <YES>`: Agree to all prompts
20+
21+
---
22+
23+
### `beaker key delete`
24+
25+
Delete existing key
26+
27+
Arguments:
28+
29+
* `<NAME>` Name of the key to create or update
30+
31+
* `-y / --yes <YES>`: Agree to all prompts
32+
33+
---
34+
35+
### `beaker key address`
36+
37+
Get address from keyring's stored key
38+
39+
Arguments:
40+
41+
* `<NAME>` Name of the key to create or update
42+
43+
---
44+
45+
### `beaker key generate`
46+
47+
Generate new mnemonic
48+
49+
Arguments:
50+
51+
* `<NAME>` Name of the key to create or update
52+
53+
* `--show <SHOW>`: Show mnemonic in the console if set, keep it secret otherwise
54+
55+
* `-y / --yes <YES>`: Agree to all prompts
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# `beaker task`
2+
3+
Managing tasks for the project
4+
5+
## Subcommands
6+
7+
---
8+
9+
### `beaker task new`
10+
11+
Create a new task
12+
13+
Arguments:
14+
15+
* `<TASK>` Name of the task
16+
17+
---
18+
19+
### `beaker task run`
20+
21+
Run a task
22+
23+
Arguments:
24+
25+
* `<SCRIPT>` Name of the task
26+
27+
* `<ARGS>`

0 commit comments

Comments
 (0)