Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/1dustindavis/gorilla
Munki-like Application Management for Windows
https://github.com/1dustindavis/gorilla
endpoint-management golang macadmins windows
Last synced: 14 days ago
JSON representation
Munki-like Application Management for Windows
- Host: GitHub
- URL: https://github.com/1dustindavis/gorilla
- Owner: 1dustindavis
- License: apache-2.0
- Created: 2018-04-08T18:51:25.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-03-06T06:44:58.000Z (8 months ago)
- Last Synced: 2024-10-21T21:46:46.360Z (23 days ago)
- Topics: endpoint-management, golang, macadmins, windows
- Language: Go
- Homepage:
- Size: 690 KB
- Stars: 188
- Watchers: 17
- Forks: 21
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Gorilla logo](gorilla.png)
# Gorilla [![Go Report Card](https://goreportcard.com/badge/github.com/1dustindavis/gorilla)](https://goreportcard.com/report/github.com/1dustindavis/gorilla) [![Build status](https://github.com/1dustindavis/gorilla/actions/workflows/go-test.yml/badge.svg?branch=main)](https://github.com/1dustindavis/gorilla/actions/workflows/go-test.yml)Munki-like Application Management for Windows
Gorilla is intended to provide application management on Windows using [Munki](https://github.com/munki/munki) as inspiration.
Gorilla supports `.msi`, `.ps1`, `.exe`, or `.nupkg` [(via chocolatey)](https://github.com/chocolatey/choco).## Getting Started
Information related to installing and configuring Gorilla can be found on the [Wiki](https://github.com/1dustindavis/gorilla/wiki).## Building
If you just want the latest version, download it from the [releases page](https://github.com/1dustindavis/gorilla/releases).
Building from source requires the [Go tools](https://golang.org/doc/install).
#### macOS and Linux
After cloning this repo, just run `make build`. A new binary will be created in `build/`#### Windows
After cloning this repo, just run `go build -i ./cmd/gorilla`. A new binary will be created in the current directory.## Contributing
Pull Requests are always welcome. Before submitting, lint and test:
```
go fmt ./...
go test ./...
```