mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
13 lines
250 B
Makefile
13 lines
250 B
Makefile
SHELL := /bin/bash
|
|
|
|
options:
|
|
echo "you can clean | test | build | run | package"
|
|
clean:
|
|
rm -f bin/content-server
|
|
build: clean
|
|
go build -o bin/content-server
|
|
package: build
|
|
pkg/build.sh
|
|
test:
|
|
go test -v github.com/foomo/contentserver/server/repo
|