Skip to content

Commit

Permalink
Recipe for building with Go Modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
udhos committed Apr 4, 2019
1 parent 36e5294 commit e9c5a89
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,19 @@ For more, see [this blog post](https://medium.com/@jondot/a-story-of-a-fat-go-bi

## Quick Start

### With Go Modules - Go 1.11 or higher

```
$ git clone https://github.com/jondot/goweight
$ cd goweight
$ go install
$ cd current-project
$ goweight
```

### Without Go Modules - Before Go 1.11

```
$ go get github.com/jondot/goweight
$ cd current-project
Expand Down Expand Up @@ -47,4 +60,4 @@ To all [Contributors](https://github.com/jondot/goweight/graphs/contributors) -

# Copyright

Copyright (c) 2018 [@jondot](http://twitter.com/jondot). See [LICENSE](LICENSE.txt) for further details.
Copyright (c) 2018 [@jondot](http://twitter.com/jondot). See [LICENSE](LICENSE.txt) for further details.

0 comments on commit e9c5a89

Please sign in to comment.