This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pedro Cunha
committed
Sep 25, 2017
1 parent
7ee4657
commit 595d01b
Showing
3 changed files
with
37 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
tmp | ||
dist | ||
paddle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,40 @@ | ||
# Paddle | ||
|
||
Paddle is a command line tool for data archival and processing. | ||
Paddle is a command line tool for canoe data archival and processing. | ||
|
||
Work in progress. | ||
## Setup | ||
|
||
Make sure you have Go installed on your machine and that you checkout the repo to | ||
the right folder. By default should be: | ||
|
||
``` | ||
mkdir -p ~/go/src/github.com/deliveroo | ||
cd ~/go/src/github.com/deliveroo | ||
git clone [email protected]:deliveroo/paddle.git | ||
cd paddle | ||
``` | ||
|
||
You will need create a `$HOME/.paddle.yaml` that contains the bucket name, e.g: | ||
|
||
``` | ||
> cat $HOME/.paddle.yaml | ||
bucket: roo-bucket | ||
``` | ||
|
||
You will also need to create a `$HOME/.aws/config` or `$HOME/.aws/credentials` so Paddle can connect to AWS, e.g.: | ||
|
||
``` | ||
> cat $HOME/.aws/credentials | ||
[default] | ||
aws_access_key_id=xxx | ||
aws_secret_access_key=yyy | ||
region=eu-west-1 | ||
``` | ||
|
||
|
||
``` | ||
$ go build | ||
``` | ||
|
||
## Usage | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters