🥔 🚀 Service management tooling
Find a file
Marc Cataford d6a5587a66
All checks were successful
Pull-Request / tests (pull_request) Successful in 1m14s
Pull-Request / static-analysis (pull_request) Successful in 1m38s
Pull-Request / post-run (pull_request) Successful in 24s
refactor: isolate + inject DefinitionFetcher
2024-11-10 11:09:40 -05:00
.forgejo/workflows ci: run pre-commit on pr + push 2024-11-10 10:25:33 -05:00
cli refactor: isolate + inject DefinitionFetcher 2024-11-10 11:09:40 -05:00
daemon refactor: unify service management under manager struct 2024-10-04 20:05:33 -04:00
podman feat: allow network, pid in container definitions 2024-11-09 18:08:32 -05:00
service refactor: unify service management under manager struct 2024-10-04 20:05:33 -04:00
service_definition refactor: isolate + inject DefinitionFetcher 2024-11-10 11:09:40 -05:00
webclient refactor: remove extraneous Post webclient flow, use Do instead 2024-10-04 20:31:38 -04:00
.gitignore feat: init + crude start command 2024-06-02 01:11:56 -04:00
.pre-commit-config.yaml build: add pre-commit tooling + basic go/shell/yaml hooks 2024-11-10 10:25:30 -05:00
bootstrap.sh build: add pre-commit tooling + basic go/shell/yaml hooks 2024-11-10 10:25:30 -05:00
go.mod build: update go -> 1.23.1 2024-09-29 15:34:11 -04:00
go.sum feat: init + crude start command 2024-06-02 01:11:56 -04:00
install.sh build: add install script and instructions 2024-06-03 23:31:32 -04:00
main.go feat: add explicit flag / arg definitions 2024-09-28 21:49:46 -04:00
README.md build: add pre-commit tooling + basic go/shell/yaml hooks 2024-11-10 10:25:30 -05:00

spud

Service management tooling

Setup

Regardless of how you obtain your binary of choice, include it in your $PATH and you are good to go!

Building from source

spud can be built from source by checking out the commit of your choosing and go build ..

Pre-built binaries

The releases page contains pre-built binaries that can be downloaded. These are built on tag-push.

The latest version can be installed via:

curl https://forge.karnov.club/spadinastan/spud/raw/branch/main/install.sh | bash

To pull a specific version, supply a $SPUD_VERSION that corresponds to an existing release tag, and to control where the binary is unpacked and installed, supply $SPUD_ROOT.

Development

The bootstrap.sh script should be run to prepare any pre-commit hooks and other required tooling for local development. Checks can be run manually via pipx run pre-commit run -a.