2db235f244
* Add helper scripts for processing and importing statediffed data * Add instructions to use the helper scripts * Update scripts to use arrays * Update README with bad row output example * Remove delimiter option from xargs command
13 lines
185 B
Makefile
13 lines
185 B
Makefile
## Build docker image
|
|
.PHONY: docker-build
|
|
docker-build:
|
|
docker build -t cerc-io/eth-statediff-service .
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -p 1 ./pkg/... -v
|
|
|
|
build:
|
|
go fmt ./...
|
|
go build
|