Kevin Franklin Kim 8d6fcd407f
Some checks failed
Test Branch / test (push) Has been cancelled
Merge pull request #273 from foomo/feature/deps
feat: bump deps
2026-03-16 16:53:57 +01:00
2026-02-17 17:54:27 +01:00
2025-11-07 14:15:03 +01:00
2026-02-17 17:54:27 +01:00
2026-03-16 16:48:45 +01:00
2023-09-08 12:17:23 +02:00
2026-03-16 16:48:45 +01:00
2026-03-16 16:48:45 +01:00
2026-02-17 17:54:27 +01:00
2025-10-02 13:52:18 +02:00
2025-10-02 13:52:18 +02:00
2026-03-16 16:48:45 +01:00
2026-03-16 16:48:45 +01:00
2025-11-10 22:11:47 +01:00
2026-02-18 06:24:49 +01:00
2025-11-11 09:46:35 +01:00
2025-12-15 16:38:43 +01:00
2025-11-10 12:39:00 +01:00
2021-11-19 14:16:09 +01:00
2026-02-17 13:47:18 +01:00
2026-02-27 10:05:45 +01:00
2026-03-16 16:48:45 +01:00
2026-02-24 13:59:01 +01:00
2026-02-24 13:59:01 +01:00
2023-09-08 22:24:31 +02:00
2024-03-15 11:01:25 +01:00
2026-03-16 16:48:45 +01:00
2026-03-16 16:48:45 +01:00
2023-09-08 22:24:31 +02:00
2021-05-18 08:34:47 +02:00
2024-11-22 09:15:21 +01:00
2026-03-16 16:48:45 +01:00
2025-10-07 09:10:40 +02:00
2026-02-17 13:48:09 +01:00
2026-02-17 17:54:27 +01:00
2021-11-16 15:31:09 +01:00
2025-10-02 13:52:18 +02:00

Build Status Go Report Card GoDoc

keel

keel

Opinionated way to run services on Kubernetes

Stack

  • Zap
  • Nats
  • Viper
  • GoTSRPC
  • Temporal
  • OpenTelemetry

Examples

See the examples folder for usages

package main

import (
  "net/http"

  "github.com/foomo/keel"
  "github.com/foomo/keel/service"
)

func main() {
  svr := keel.NewServer(
    keel.WithHTTPZapService(true),
    keel.WithHTTPViperService(true),
    keel.WithHTTPPrometheusService(true),
  )

  l := svr.Logger()

  svs := newService()

  svr.AddService(
    service.NewHTTP(l, "demo", "localhost:8080", svs),
  )

  svr.Run()
}

func newService() *http.ServeMux {
  s := http.NewServeMux()
  s.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
    w.WriteHeader(http.StatusOK)
    _, _ = w.Write([]byte("OK"))
  })
  return s
}

How to Contribute

Contributions are welcome! Please read the contributing guide.

Contributors

License

Distributed under MIT License, please read the license file for more details.

Made with ♥ foomo by bestbytes

Description
No description provided
Readme MIT 4.2 MiB
Languages
Go 99%
Makefile 1%