components-contrib/.build-tools
Deepanshu Agarwal b2d8e6013b
Add bulkSubscribe request params to SubscribeRequest (#2405)
* Add bulkSubscribe configuration params

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>

* Replace dapr/dapr package to run cert tests

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>

* Change bulkSubscribe param types

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>

* Update latest dapr/dapr fork

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>

* Update correct dapr/dapr version

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>

* change BulkSubscribeRequest to Config

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>

* Update dapr/dapr version for cert

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>

* Update with latest dapr fork

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>
2023-01-10 09:30:25 -08:00
..
cmd Component metadata schema and tools (#2077) 2022-09-27 10:44:54 -07:00
pkg Updates to go.mod for temporal and inclusion of workflows in build-tools files 2022-10-24 20:59:56 -06:00
.gitignore Component metadata schema and tools (#2077) 2022-09-27 10:44:54 -07:00
README.md Component metadata schema and tools (#2077) 2022-09-27 10:44:54 -07:00
component-folders.json Updates to go.mod for temporal and inclusion of workflows in build-tools files 2022-10-24 20:59:56 -06:00
go.mod Add bulkSubscribe request params to SubscribeRequest (#2405) 2023-01-10 09:30:25 -08:00
go.sum drop replace for dapr runtime in cert tests 2022-12-21 20:57:44 +05:30
main.go Component metadata schema and tools (#2077) 2022-09-27 10:44:54 -07:00

README.md

dapr/components-contrib build-tools CLI

This folder contains a CLI that implements a number of build tools used by dapr/components-contrib.

The CLI is written in Go and based on the cobra framework. In order to use it, Go (1.18+) must be installed on your system.

Running the CLI

You have two ways to run the CLI:

  1. Within the build-tools directly, you can run the CLI with go run . directly. For example go run . help shows the help page.
  2. You can build a pre-compiled binary by running make compile-build-tools in the root folder of this repository. This will build an executable called build-tools (or build-tools.exe on Windows) in the build-tools folder. You can then run the command directly, for example ./build-tools help

Available commands

The list of available commands in this CLI is dynamic and is subject to change at any time. Each command, including the "root" one (no sub-command), are self-documented in the CLI, and you can read the help page by adding --help.

For example, ./build-tools --help shows the full list of commands the CLI offers.