Skip to content

Commit

Permalink
docs(readme): add verifying the installation
Browse files Browse the repository at this point in the history
  • Loading branch information
zackijack committed Jun 18, 2021
1 parent 92dbfd8 commit 82e9137
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# go-project

Go project template

## Install

You can install the pre-compiled binary in several different ways.

#### homebrew tap

```shell
$ brew tap zackijack/tap
$ brew install go-project
Expand All @@ -17,18 +20,36 @@ $ brew install zackijack/tap/go-project
```

#### deb/rpm

Download the `.deb` or `.rpm` from the [releases page](https://github.com/zackijack/go-project/releases) and install with `dpkg -i` and `rpm -i` respectively.

#### docker

```shell
$ docker pull zackijack/go-project
```

#### go get

```shell
$ go get github.com/zackijack/go-project
```

and ensuring that `$GOPATH/bin` is added to your `$PATH`.

#### manually
Download the pre-compiled binaries from the [releases page](https://github.com/zackijack/go-project/releases) and copy to the desired location.

Download the pre-compiled binaries from the [releases page](https://github.com/zackijack/go-project/releases) and copy to the desired location.

### Verifying the installation

Once you’ve installed go-project, you can verify it is installed correctly by running `version` command:
```shell
$ go-project version
```

or with docker

```shell
$ docker run --rm zackijack/go-project:latest version
```

0 comments on commit 82e9137

Please sign in to comment.