Skip to content

v1.5.1

Latest

Choose a tag to compare

@github-actions github-actions released this 18 Aug 10:38
3b878b8

What's New in v1.5.1

protoc-gen-store generates Prisma, GORM, and SQL database schemas
from your Protobuf definitions. Download the binary for your platform below.

Installation

Homebrew

brew install the-protobuf-project/tap/protoc-gen-store

Manual (macOS / Linux)

# Pick your platform, e.g. darwin_arm64 / linux_amd64
curl -LO https://github.com/the-protobuf-project/store/releases/download/v1.5.1/protoc-gen-store_1.5.1_darwin_arm64.tar.gz
tar -xzf protoc-gen-store_1.5.1_darwin_arm64.tar.gz
sudo mv protoc-gen-store /usr/local/bin/

Then reference it from buf.gen.yaml:

plugins:
  - local: protoc-gen-store
    out: generated
    opt: [target=prisma]   # prisma | gorm | sql

Changelog

Features

Others