The registry provides a central place to store and manage your protobuf files.
The protobuf files are usually stored in the same repository as the code that uses them. This approach works well for small projects, but it becomes a problem when you have multiple repositories that use the same protobuf files. In this case, you have to copy manually the files to each repository, which is not only tedious but also error-prone.
The registry solves this problem by providing a central place to store and manage your protobuf files and sync the files with your repositories.
- Clone the repository
- Generate certificates with
make certs-gen
command (they will appear ingen/certs
folder) or put your own certificates in the folder - Export
SERVER_STATIC_TOKEN
with static authorization token - Run
make run-prod
to start the registry - Run
make stop-prod
to stop the running registry
The registry can be configured with environment variables that overrides values in the config/config.yaml
file. For instance, to change the database DSN you can set DATA_DATABASE_DSN
environment variable that is reflect to data.database.dsn
yaml property.
- Helm
- Postgres database should be provisioned separately
Add repository to Helm:
helm repo add pbuf https://pbufio.github.io/helm-charts
To install the chart with the release name my-pbuf-registry
:
helm install my-pbuf-registry pbuf/pbuf-registry --set secrets.databaseDSN=<databaseDSN>
More information about the chart can be found in the chart repository
We recommend to use the CLI to interact with the registry.
The registry provides a REST API (:8080
port by default). You can find the swagger documentation here.
The registry provides a gRPC API (:6777
port by default). You can find the protobuf definition here
- Run
make build
to build the registry - Run
make build-in-docker
to build linux binaries in docker
- Run
make test
to run the tests.
- Run
make run
to start the registry and test it. - Run
make stop
to stop the running registry.