Skip to content

Commit

Permalink
Add installation instructions for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
visortelle committed Apr 26, 2024
1 parent ec38d02 commit 5dfcc27
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,27 @@ Unlike [Pulsar Standalone](https://pulsar.apache.org/docs/next/getting-started-s

This way you can test scenarios.

## Quickstart
## Install

### MacOS using Homebrew

```
brew tap tealtools/tap
brew install tealtools/tap/puls
```

### Linux

TODO

### Build from source

- Clone the repository `git clone git@github.com:tealtools/puls.git && cd ./puls`
- [Install Rust](https://www.rust-lang.org/tools/install)
- Rust `cargo install --path .`
- Check the installation `puls --version`

## Usage

```
puls start
Expand Down
3 changes: 2 additions & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
]
profile = "default"
profile = "minimal"
2 changes: 0 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -644,8 +644,6 @@ fn start_cmd(args: StartCommandArgs) -> Result<InstanceOutput> {

if !args.follow {
docker_compose_args.push("--wait");
docker_compose_args.push("--wait-timeout");
docker_compose_args.push("600");
docker_compose_args.push("--detach");
}

Expand Down

0 comments on commit 5dfcc27

Please sign in to comment.