No description
  • Go 94.1%
  • Dockerfile 5.9%
Find a file
2026-03-08 10:18:13 +03:00
cmd/gopar feat(fiber): migrate v2->v3 2026-02-28 12:35:17 +03:00
example feat: initial release 2026-02-27 20:07:59 +03:00
internal feat: update handler; see also https://github.com/GoogleCloudPlatform/govanityurls/blob/main/handler.go#L166C1-L167C1 2026-02-28 22:18:02 +03:00
k8s feat: idk 2026-03-08 10:18:06 +03:00
.drone.yml fix(ci) 2026-03-01 11:00:02 +03:00
.gitignore feat: initial release 2026-02-27 20:07:59 +03:00
Dockerfile chore(ci): change to own docker container 2026-02-28 13:36:29 +03:00
go.mod chore(deps): Update dependency go to v1.26.1 2026-03-06 00:45:30 +00:00
go.sum feat: still migrating to my own library 2026-02-28 13:24:03 +03:00
README.md feat: initial release 2026-02-27 20:07:59 +03:00
renovate.json chore(renovate): change schedule 2026-02-28 11:57:38 +03:00

Gopar

a simplified version of what i saw on go.uber.org

HOWTO configure:

yaml config:

host: localhost:8080 #FIXME(kroot): replace in prod
paths:
  /atomic:
    repo: https://github.com/uber-go/atomic
    display: https://github.com/uber-go/atomic
    vcs: git

env config:

export GOPAR_HOST=localhost:8080 #FIXME(kroot): replace in prod
export GOPAR_CACHE_AGE=24h
export GOPAR_PATHS__ATOMIC__REPO=https://github.com/uber-go/atomic
export GOPAR_PATHS__ATOMIC__DISPLAY=https://github.com/uber-go/atomic
export GOPAR_PATHS__ATOMIC__VCS=git

env path keys map to /<lowercased-key>, so GOPAR_PATHS__ATOMIC__REPO becomes /atomic.

SEE ALSO: config/config.go