Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Nov 20, 2023. It is now read-only.

bow/wf

Repository files navigation

wf

godoc ci coverage

wf waits until TCP server(s) are ready to accept connections.

Why?

The main use case for wf is to make containerized applications that depend on external services more robust by waiting for those actual services to be ready, prior to application start. wf can wait on multiple TCP servers and is provided as a single, static binary for linux/amd64, so it can be added into the container and used as-is.

Usage

wf is provided as a command line application.

$ wf --help

Wait until TCP server(s) are ready to accept connections

Usage:
  wf [FLAGS] ADDRESS...

Flags:
  -t, --timeout duration     set wait timeout (default 5s)
  -f, --poll-freq duration   set connection poll frequency (default 500ms)
  -q, --quiet                suppress waiting messages
  -h, --help                 help for wf
      --version              version for wf

The functionalities themselves are provided as a Go library in the wait package. Refer to the relevant GoDoc documentation for a complete documentation.

Development

wf was developed using Go 1.18 on linux/amd64. Other versions and/or platforms may work but have not been tested.

# Clone the repository.
$ git clone https://github.com/bow/wf

# Install the development dependencies.
$ make install-dev

# Run the tests and/or linter.
$ make test
$ make lint

# Build the wf binary.
$ make bin

# When in doubt, just run `make`.
$ make

Credits

wf was inspired by the wait-for-it.sh script by @vishnubob.

About

Wait for TCP servers to be ready

Resources

License

Stars

Watchers

Forks

Packages

No packages published