set -gx GO_PPROF on pprof -seconds 10 -http=localhost:8181 http://localhost:3015/debug/pprof/profile
# tx
just tx-test
# on terminal
just test
# clean data
just cleandb- Start the supporting infrastructure:
# manually
docker compose -f infra/compose/local_support/compose.yaml up --force-recreate
# just
just infra- Start all the services
# manually
./scripts/integration_tests.sh
# just
just test-infra- Run all the tests
# manually
mkdir -p ./.tmp
go test -coverprofile ./.tmp/coverage.out ./...
go tool cover -html ./.tmp/coverage.out
# just
just test