blob: f9c111eed5694018d761d590be3fdfd27455157c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
all: build docker
install-dep:
apt update -y && apt install -y apache2-utils wrk
build:
go build ./tools/http_server
docker:
bash ./script/build.sh
fixstyle:
@gofmt -w .
@go mod tidy
.PHONY: docker
|