Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ help: # Show help in Makefile
GOBIN=$(LOCAL_BIN) GOPROXY=direct go install github.com/pubg/protoc-gen-jsonschema@latest
GOBIN=$(LOCAL_BIN) GOPROXY=direct go install github.com/envoyproxy/protoc-gen-validate@latest
GOBIN=$(LOCAL_BIN) GOPROXY=direct go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc@latest

GOBIN=$(LOCAL_BIN) GOPROXY=direct go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
GOBIN=$(LOCAL_BIN) GOPROXY=direct go install google.golang.org/protobuf/cmd/protoc-gen-go@latest

PROTO_PATH=$(CURDIR)/proto
.PHONY: .build-proto-docs
Expand Down Expand Up @@ -162,4 +163,4 @@ TPCC_EXAMPLE_DIR=$(CURDIR)/examples/tpcc
$(CURDIR)/$(STROPPY_BIN_NAME) run --run-config=$(TPCC_EXAMPLE_DIR)/run.json --steps=create_tables,cleanup,insert_data
$(CURDIR)/$(STROPPY_BIN_NAME) run --run-config=$(TPCC_EXAMPLE_DIR)/run.json --steps=tpcc_workload
#dlv exec --headless --accept-multiclient --listen=:2345 $(CURDIR)/$(STROPPY_BIN_NAME) run -- --run-config=$(TPCC_EXAMPLE_DIR)/run.json --steps=tpcc_workload
#sudo dlv attach 3537547 --listen=:2345 --continue --headless --accept-multiclient
#sudo dlv attach 3537547 --listen=:2345 --continue --headless --accept-multiclient
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Stroppy is a benchmarking and testing tool for database systems. It provides a f

- Go 1.24.3 or later
- Protocol Buffers compiler (e.g. protoc, for generating schemes)
- Node.js and npm (for TypeScript SDK generation)
- Node.js and npm (for TypeScript SDK generation - https://www.npmjs.com/package/@protobuf-ts/plugin)
- Make (for building the project)

1. Clone the repository:
Expand All @@ -39,7 +39,7 @@ Stroppy is a benchmarking and testing tool for database systems. It provides a f

2. Install dependencies:
```bash
make .bin_deps
make .bin-deps
go mod tidy
```

Expand Down