Skip to content
This repository has been archived by the owner on Feb 8, 2023. It is now read-only.

Commit

Permalink
Add description to README (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
otype authored and stiangrindvoll committed Nov 24, 2017
1 parent 93921ed commit d348320
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# exclude binary
rio

# exclude dirs
data/
data2dir/
build/
vendor/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tools:
go get -u github.com/mitchellh/gox

deps:
dep ensure
dep ensure

test:
go vet ${DIRECTORIES}
Expand Down
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
# Rabbit IO - Work in Progress
This is a tool to support backup and restoring of RabbitMQ messages, currently work in progress and might not be functional

## Requirements

You will need following to build `rabbitio` locally:

- [Golang](https://golang.org/dl/)
- [dep](https://github.com/golang/dep)

## Getting started

If you plan to work on `rabbitio` you will need to:

1. Create directories
```
mkdir -p $GOPATH/src/github.com/meltwater
```

2. Clone `rabbitio`:
```
cd $GOPATH/src/github.com/meltwater
git clone [email protected]:meltwater/rabbitio.git
```

3. Make:
```
cd rabbitio
make && make build
```

## Maintainers

Expand Down

0 comments on commit d348320

Please sign in to comment.