/
t3
/
cli
Обзор
Документация
Войти
/
t3
/
cli
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
makefile
22 строки
584 B
Ivan Shibkikh
s3 cache
05 июл 2026, 21:07
05 июл 2026, 21:07
b47210d
Код
Авторство
О чём код?
.PHONY: build test build: go build -o bin/t3 cmd/* run_client: build bin/t3 -start ../helloworld/baseline.yml run_agent1: build bin/t3 -agent :50001 -token secretagent1 -cache-dir ./s3cache -cache-max-size 2048 run_agent2: build bin/t3 -agent :50002 -token secretagent1 -cache-dir ./s3cache -cache-max-size 2048 run_mock: ../mock-server/bin/mock-server --addr :8081 protoc: protoc --proto_path=proto --go_out=pkg/pb --go_opt=paths=source_relative --go-grpc_out=pkg/pb --go-grpc_opt=paths=source_relative proto/*.proto test: go test -timeout 30s test/user_pool_test.go -v