An open API service indexing awesome lists of open source software.

https://github.com/qdrant/qdrant-cloud-buf-plugins

Collection of Buf plugins used by Qdrant Cloud APIs
https://github.com/qdrant/qdrant-cloud-buf-plugins

Last synced: 11 months ago
JSON representation

Collection of Buf plugins used by Qdrant Cloud APIs

Awesome Lists containing this project

README

          

# qdrant-cloud-buf-plugins

Collection of [Buf plugins](https://buf.build/docs/cli/buf-plugins/overview/) used by Qdrant Cloud APIs.

## Development

This project leverages Make to automate common development tasks. To view all available commands, run:

``` sh
make help
```

### Setup

To work with this project locally, you need to have [Go](https://go.dev/doc/install) installed.
Additionally, there are other required dependencies that you can install running:

``` sh
make bootstrap
```

### Running tests

To run the tests, execute:

``` sh
make test
```

### Formatting & linting code

To format and lint the code of the project, execute:

``` sh
make fmt
make lint
```