18 lines
239 B
Makefile
18 lines
239 B
Makefile
.PHONY: dev local client build test
|
|
|
|
dev:
|
|
docker compose up --build
|
|
|
|
local:
|
|
go run ./cmd/server
|
|
|
|
client:
|
|
go run ./cmd/client
|
|
|
|
build:
|
|
go build -o neuralhunt ./cmd/server
|
|
go build -o neuralhunt-client ./cmd/client
|
|
|
|
test:
|
|
go test ./...
|