Skip to content

Commit

Permalink
#1086 solve examples errors (#1087)
Browse files Browse the repository at this point in the history
* updated documentation in both examples repo and docs to a working version of running Ballista from the CLI

* updated documentation in both examples repo and docs to a working version of running Ballista from the CLI

---------

Co-authored-by: Trevor Barnes <[email protected]>
  • Loading branch information
tbar4 and Trevor Barnes authored Oct 16, 2024
1 parent 1c4a38c commit 0c52731
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/source/user-guide/deployment/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The examples can be run using the `cargo run --bin` syntax. Open a new terminal

```bash
cd examples
cargo run --release --bin sql
cargo run --release --example remote-sql
```

### Source code for distributed SQL example
Expand Down Expand Up @@ -108,7 +108,7 @@ async fn main() -> Result<()> {

```bash
cd examples
cargo run --release --bin dataframe
cargo run --release --example remote-dataframe
```

### Source code for distributed DataFrame example
Expand Down
4 changes: 2 additions & 2 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ The examples can be run using the `cargo run --bin` syntax.
## Distributed SQL Example

```bash
cargo run --release --bin sql
cargo run --release --example remote-sql
```

### Source code for distributed SQL example
Expand Down Expand Up @@ -136,7 +136,7 @@ async fn main() -> Result<()> {
## Distributed DataFrame Example

```bash
cargo run --release --bin dataframe
cargo run --release --example remote-dataframe
```

### Source code for distributed DataFrame example
Expand Down

0 comments on commit 0c52731

Please sign in to comment.