|
1 |
| -# Gorilla |
2 |
| -[](https://goreportcard.com/report/github.com/1dustindavis/gorilla) [](https://ci.appveyor.com/project/DustinDavis/gorilla/branch/master) |
| 1 | + |
| 2 | +# Gorilla [](https://goreportcard.com/report/github.com/1dustindavis/gorilla) [](https://ci.appveyor.com/project/DustinDavis/gorilla/branch/master) |
3 | 3 |
|
4 | 4 | Munki-like Application Management for Windows
|
5 | 5 |
|
6 | 6 | Gorilla is intended to provide application management on Windows using [Munki](https://github.com/munki/munki) as inspiration.
|
7 | 7 | Gorilla supports `.msi`, `.ps1`, `.exe`, or `.nupkg` [(via chocolatey)](https://github.com/chocolatey/choco).
|
8 | 8 |
|
9 | 9 | ## Getting Started
|
10 |
| -Information related to installing and configuring Gorilla can be found on the [Wiki](https://github.com/1dustindavis/gorilla/wiki) |
| 10 | +Information related to installing and configuring Gorilla can be found on the [Wiki](https://github.com/1dustindavis/gorilla/wiki). |
11 | 11 |
|
12 | 12 | ## Building
|
13 | 13 |
|
14 |
| -If you just want the latest version, get it here: https://github.com/1dustindavis/gorilla/releases |
| 14 | +If you just want the latest version, download it from the [releases page](https://github.com/1dustindavis/gorilla/releases). |
15 | 15 |
|
16 |
| -Building from source requires the golang tools: https://golang.org/doc/install |
| 16 | +Building from source requires the [Go tools](https://golang.org/doc/install). |
17 | 17 |
|
18 |
| -#### macOS |
19 |
| -After cloning this repo, run `make deps` and then `make build`. A new binary will be created in `build/` |
| 18 | +#### macOS and Linux |
| 19 | +After cloning this repo, just run `make build`. A new binary will be created in `build/` |
20 | 20 |
|
21 | 21 | #### Windows
|
22 |
| -1. Clone this repo |
23 |
| -2. Install dep: `go get -u github.com/golang/dep/...` |
24 |
| -3. Install dependencies: `dep ensure -vendor-only -v` |
25 |
| -4. Build gorilla: `go build -i ./cmd/gorilla` |
| 22 | +After cloning this repo, just run `go build -i ./cmd/gorilla`. A new binary will be created in the current directory. |
26 | 23 |
|
27 | 24 | ## Contributing
|
28 |
| -Pull Requests are always welcome. Before submitting, check if the linter or tests fail: |
| 25 | +Pull Requests are always welcome. Before submitting, lint and test: |
29 | 26 | ```
|
30 | 27 | go fmt ./...
|
31 | 28 | go test ./...
|
|
0 commit comments