https://github.com/foomo/gokazi
Simple daemonless process manager
https://github.com/foomo/gokazi
foomo foomo-gokazi process-manager
Last synced: 8 months ago
JSON representation
Simple daemonless process manager
- Host: GitHub
- URL: https://github.com/foomo/gokazi
- Owner: foomo
- License: mit
- Created: 2025-04-07T12:58:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-01T13:39:50.000Z (9 months ago)
- Last Synced: 2025-09-01T15:26:27.927Z (9 months ago)
- Topics: foomo, foomo-gokazi, process-manager
- Language: Go
- Homepage: https://www.foomo.org
- Size: 72.3 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
[](https://github.com/foomo/gokazi/actions/workflows/pr.yml)
[](https://goreportcard.com/report/github.com/foomo/gokazi)
[](https://coveralls.io/github/foomo/gokazi?branch=main)
[](https://godoc.org/github.com/foomo/gokazi)
# gokazi
> Simple daemonless process (swaheli: task <> kazi) manager.
Works by comparing processes by arguments, cwd and executable path.
## Install
Install the latest release of the cli:
```shell
$ brew update
$ brew install foomo/tap/gokazi
```
## Usage
```shell
$ gokazi help
CLI process manager
Usage:
gogazi [command]
Available Commands:
completion Generate the autocompletion script for the specified shell
config Print config
help Help about any command
list List tasks
stop Stop task by id
version Print version
Flags:
--debug enable debug logs
-h, --help help for gogazi
Use "gogazi [command] --help" for more information about a command.
```
## Configuration
```yaml
version: '1.0'
tasks:
list:
name: gokazi
description: Own listing process
path: $PWD/bin
cwd: $PWD
args: [list]
list-debug:
name: gokazi
path: $PWD/bin
cwd: $PWD
args: [list, --debug]
```
## How to Contribute
Please refer to the [CONTRIBUTING](.github/CONTRIBUTING.md) details and follow the [CODE_OF_CONDUCT](.github/CODE_OF_CONDUCT.md) and [SECURITY](.github/SECURITY.md) guidelines.
## License
Distributed under MIT License, please see license file within the code for more details.
_Made with ♥ [foomo](https://www.foomo.org) by [bestbytes](https://www.bestbytes.com)_