├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── Makefile ├── README.md ├── config.sample.yml ├── grafana └── program_management.json └── src ├── cmd └── root.go ├── core ├── config.go ├── config_test.go └── runner.go ├── go.mod ├── go.sum ├── jerem.go └── runner ├── epic.go ├── epic_test.go ├── sprint.go └── utils.go /.gitignore: -------------------------------------------------------------------------------- 1 | src/vendor 2 | bin/ 3 | config.yml 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/README.md -------------------------------------------------------------------------------- /config.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/config.sample.yml -------------------------------------------------------------------------------- /grafana/program_management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/grafana/program_management.json -------------------------------------------------------------------------------- /src/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/cmd/root.go -------------------------------------------------------------------------------- /src/core/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/core/config.go -------------------------------------------------------------------------------- /src/core/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/core/config_test.go -------------------------------------------------------------------------------- /src/core/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/core/runner.go -------------------------------------------------------------------------------- /src/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/go.mod -------------------------------------------------------------------------------- /src/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/go.sum -------------------------------------------------------------------------------- /src/jerem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/jerem.go -------------------------------------------------------------------------------- /src/runner/epic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/runner/epic.go -------------------------------------------------------------------------------- /src/runner/epic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/runner/epic_test.go -------------------------------------------------------------------------------- /src/runner/sprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/runner/sprint.go -------------------------------------------------------------------------------- /src/runner/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/jerem/HEAD/src/runner/utils.go --------------------------------------------------------------------------------