Generic datastore service with basic indexing and querying capabilities, ts client generation (#52)

This commit is contained in:
Janos Dobronszki
2021-02-03 13:20:07 +00:00
committed by GitHub
parent c19bf17fb5
commit a102d9e5f3
32 changed files with 5010 additions and 626 deletions

View File

@@ -8,7 +8,12 @@ init:
.PHONY: proto
proto:
protoc --proto_path=. --micro_out=. --go_out=:. proto/threads.proto
.PHONY: docs
docs:
protoc --openapi_out=. --proto_path=. --micro_out=. --go_out=:. proto/threads.proto
@redoc-cli bundle api-protobuf.json
.PHONY: build
build:
go build -o threads *.go