mirror of
https://github.com/makeplane/plane.git
synced 2026-02-24 20:20:49 +01:00
15 lines
190 B
Makefile
15 lines
190 B
Makefile
|
|
help::
|
|
cd ./cli && go run .
|
|
|
|
start-cron::
|
|
cd ./cli && go run . cron start
|
|
|
|
build::
|
|
cd ./cli && go build
|
|
|
|
test::
|
|
chmod +x run-tests.sh && ./run-tests.sh
|
|
|
|
.PHONY: help, start-cron, test
|