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
- Host: GitHub
- URL: https://github.com/qdrant/qdrant-cloud-buf-plugins
- Owner: qdrant
- License: apache-2.0
- Created: 2025-04-02T10:22:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-17T20:50:16.000Z (11 months ago)
- Last Synced: 2025-06-21T12:37:14.116Z (11 months ago)
- Language: Go
- Size: 41 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
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
```