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

fix(zk_toolbox): improve readme to include containers command and cd #2073

Merged
merged 1 commit into from
May 29, 2024
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
9 changes: 8 additions & 1 deletion zk_toolbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,14 @@ To create a ZK Stack project, you must first create an ecosystem:
zk_inception ecosystem create
```

All subsequent commands should be executed from within the ecosystem folder.
If you chose to not start database & L1 containers after creating the ecosystem, you can later run
`zk_inception containers`

All subsequent commands should be executed from within the ecosystem folder you created:

```bash
cd `path/to/ecosystem/name`
```

If the ecosystem has never been deployed before, initialization is required:

Expand Down
2 changes: 1 addition & 1 deletion zk_toolbox/crates/zk_inception/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub enum InceptionSubcommands {
/// Ecosystem related commands
#[command(subcommand)]
Ecosystem(EcosystemCommands),
/// Hyperchain related commands
/// Chain related commands
#[command(subcommand)]
Chain(ChainCommands),
/// Run server
Expand Down
Loading