Remove simple

Remove the word simple, which doesn't add any value.
This commit is contained in:
Felix Niederwanger 2023-05-06 17:29:33 +02:00
parent a7f5abb57b
commit 9da74d1f75
Signed by: phoenix
GPG key ID: 6E77A590E3F6D71C
2 changed files with 5 additions and 5 deletions

View file

@ -1,10 +1,10 @@
# weblug
Simple webhook receiver program. `weblug` is is a configurable webhook receiver that allows users to define custom programs and script to be executed when a webhook is triggered.
Webhook receiver program. `weblug` is is a configurable webhook receiver that allows users to define custom programs and script to be executed when a webhook is triggered.
The configuration happens via a simple [yaml file](weblug.yml).
The configuration happens via a [yaml file](weblug.yml).
`weblug` supports multiple webhooks, limitations for concurrent web hooks to be executed, background execution and running webhooks as separate user (`uid`/`gid`). And all of this in a tidy, easy-to-use yaml file!
`weblug` supports multiple webhooks, limitations for concurrent web hooks to be executed, background execution and running webhooks as separate user (`uid`/`gid`).
## Usage

View file

@ -17,7 +17,7 @@ var cf Config
type Handler func(http.ResponseWriter, *http.Request)
func usage() {
fmt.Println("weblug is a simple webhook receiver")
fmt.Println("weblug is a webhook receiver")
fmt.Printf("Usage: %s [OPTIONS] YAML1[,YAML2...]\n\n", os.Args[0])
fmt.Println("OPTIONS")
fmt.Println(" -h, --help Print this help message")
@ -197,7 +197,7 @@ func createHealthHandler() Handler {
func createDefaultHandler() Handler {
return func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
fmt.Fprintf(w, "weblug - simple webhook handler")
fmt.Fprintf(w, "weblug - webhook receiver program\nSee https://codeberg.org/grisu48/weblug\n")
}
}