Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/otaviof/waiter
Starts and wait until done is issued.
https://github.com/otaviof/waiter
Last synced: about 1 month ago
JSON representation
Starts and wait until done is issued.
- Host: GitHub
- URL: https://github.com/otaviof/waiter
- Owner: otaviof
- License: apache-2.0
- Created: 2021-05-25T13:43:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-21T06:53:21.000Z (over 3 years ago)
- Last Synced: 2024-06-19T16:43:35.787Z (5 months ago)
- Language: Go
- Homepage:
- Size: 136 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
`waiter`
--------In a nutshell, it waits until the lock-file is removed. When starting the application a lock-file
(`--lock-file-path`) is created, and when the file is removed the `waiter` stops gracefully. When
timeout is reached, the application exists on error.## Usage
Please consider `--help` to see the possible flags, the possible sub-commands are:
```sh
waiter start
```And:
```sh
waiter done
```## Contributing
This project uses [GNU/Make][make] to concentrate all basic actions against the code-base. In order
to build the application, run:```sh
make
```To execute the project tests, run:
```sh
make test
```And building a container-image out of local changes can be achieved by:
```sh
make image
```Also consider the top-variables on the `Makefile` to tweak execution parameters.
[make]: https://www.gnu.org/software/make/