Skip to content

Commit

Permalink
updating readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilherme Thomazi Bonicontro committed Apr 19, 2018
1 parent 7ddeed1 commit 5fcba2f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ You can also install with `go get -u github.com/guitmz/n26/cmd/n26` (make sure y
# Docker
A Dockerfile is also provided and the prebuilt image is available for pulling: `docker pull guitmz/n26` or `docker pull guitmz/n26:DESIRED_TAG`

As of now, the container rely on the `N26_USERNAME` and `N26_PASSWORD` environment variables being passed to it.
You can run it like:
`$ docker run -e N26_USERNAME="username" -e N26_PASSWORD="password" guitmz/n26`

or if you want to be asked for your credentials:

`$ docker run -ti guitmz/n26`

# Usage
```
Expand All @@ -23,7 +28,7 @@ USAGE:
n26 command [json|statement ID]
VERSION:
1.3.1
1.4.0
AUTHOR:
Guilherme Thomazi <thomazi@linux.com>
Expand Down
2 changes: 1 addition & 1 deletion cmd/n26/n26.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type transactionWriter interface {

func main() {
app := cli.NewApp()
app.Version = "1.3.1"
app.Version = "1.4.0"
app.UsageText = "n26 command [json|csv|statement ID]"
app.Name = "N26"
app.Usage = "your N26 Bank financial information on the command line"
Expand Down

0 comments on commit 5fcba2f

Please sign in to comment.