-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd4fc47
commit bf2e79f
Showing
1 changed file
with
41 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,43 @@ | ||
# service-wrapper | ||
# Service Shark | ||
|
||
[![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/matthiasng/service-wrapper/blob/master/LICENSE) | ||
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/matthiasng/service-wrapper?sort=semver) | ||
![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/matthiasng/service-wrapper/build/master) | ||
[![codecov](https://codecov.io/gh/matthiasng/service-wrapper/branch/master/graph/badge.svg)](https://codecov.io/gh/matthiasng/service-wrapper) | ||
![GitHub](https://img.shields.io/github/license/matthiasng/service-shark) | ||
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/matthiasng/service-shark?sort=semver) | ||
![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/matthiasng/service-shark/build/master) | ||
[![codecov](https://codecov.io/gh/matthiasng/service-shark/branch/master/graph/badge.svg)](https://codecov.io/gh/matthiasng/service-shark) | ||
[![Go Report Card](https://goreportcard.com/badge/github.com/matthiasng/service-wrapper)](https://goreportcard.com/report/github.com/matthiasng/service-wrapper) | ||
|
||
Service Shark can be used to to host any executable as an Windows service. | ||
|
||
Service Shark is: | ||
- easy to use | ||
- lightweight (~2 MB) | ||
- has zero runtime dependencies (no .NET Framework, Java, ...) | ||
- writte in [golang](https://golang.org/) | ||
|
||
Service Shark is not: | ||
- a service manager. Their are already easy ways to manage Windows services ([powershell](https://docs.microsoft.com/de-de/powershell/scripting/samples/managing-services?view=powershell-6), [cmd](https://docs.microsoft.com/de-de/windows-server/administration/windows-commands/sc-create), [NSSM](https://nssm.cc/)) | ||
|
||
## Installation | ||
|
||
### Pre-compiled binary | ||
|
||
#### Download from github | ||
``` | ||
https://github.com/matthiasng/service-shark/releases/latest) | ||
``` | ||
|
||
#### Scoop | ||
``` | ||
#todo setup scoop bucket + goreleaser | ||
``` | ||
|
||
### Compiling from source | ||
``` | ||
git clone https://github.com/matthiasng/service-shark.git | ||
cd service-shark | ||
go build -o service-shark.exe main.go | ||
``` | ||
|
||
## Usage | ||
|
||
#todo |