cic-chain-events/Makefile

28 lines
721 B
Makefile
Raw Normal View History

SHELL := /bin/bash
BIN := cic-chain-events
.PHONY: build
build:
CGO_ENABLED=1 go build -v -ldflags="-s -w" -o ${BIN} cmd/*.go
run:
CGO_ENABLED=1 go run -ldflags="-s -w" cmd/*.go
mod:
go mod tidy
go mod verify
2023-01-14 10:20:16 +01:00
test-pkg:
TEST_GRAPHQL_ENDPOINT=https://rpc.alfajores.celo.grassecon.net/graphql go test -v -covermode atomic -coverprofile=covprofile ./pkg/...
bench-pkg:
TEST_RPC_ENDPOINT=https://rpc.alfajores.celo.grassecon.net TEST_GRAPHQL_ENDPOINT=https://rpc.alfajores.celo.grassecon.net/graphql go test -v -bench=. -run=^Benchmark ./pkg/...
migrate:
tern migrate -c migrations/tern.conf
docker-clean:
docker-compose down
docker volume rm cic-chain-events_cic-indexer-pg cic-chain-events_cic-indexer-nats