Skip to content

Commit

Permalink
Add installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmartinelli committed Jan 4, 2016
1 parent 8b593ac commit f066a04
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,34 @@ pipecat consume results --autoack --non-blocking \

## Install

**OSX**

```bash
wget -O pipecat https://github.com/lukasmartinelli/pipecat/releases/download/v0.1/pipecat_darwin_amd64
chmod +x pipecat

./pipecat --help
```

**Linux**

```bash
wget -O pipecat https://github.com/lukasmartinelli/pipecat/releases/download/v0.1/pipecat_darwin_amd64
chmod +x pipecat

./pipecat --help
```


**Install from Source**

```
go get github.com/lukasmartinelli/pipecat
```

If you are using Windows or 32-bit architectures you need to [download the appropriate binary
yourself](https://github.com/lukasmartinelli/pipecat/releases/latest).

## Support

Pipecat supports a local mode and all AMPQ 0.9.1 message brokers.
Expand Down Expand Up @@ -177,3 +201,12 @@ pipecat consume results --autoack --non-blocking | python -cu 'import sys; print
With a few lines additional code only depending on the standard library
you can now make any program in any language scalable using message queues.
Without any dependencies and without changing the behavior bit.

## Cross Compile Release

We use [gox](https://github.com/mitchellh/gox) to create distributable
binaries for Windows, OSX and Linux.

```bash
docker run --rm -v "$(pwd)":/usr/src/pipecat -w /usr/src/pipecat tcnksm/gox:1.4.2-light
```
1 change: 1 addition & 0 deletions pipecat.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ func main() {
app := cli.NewApp()
app.Name = "pipecat"
app.Usage = "Connect unix pipes and message queues"
app.Version = "0.1"

globalFlags := []cli.Flag{
cli.StringFlag{
Expand Down

0 comments on commit f066a04

Please sign in to comment.