mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-01-18 18:55:54 +08:00
12 lines
182 B
Makefile
12 lines
182 B
Makefile
assets:
|
|
cd ./ui && yarn build
|
|
|
|
# TODO: Update this once go1.16 is released.
|
|
go_binary:
|
|
go1.16rc1 build -o asynqmon .
|
|
|
|
# Target to build a release binary.
|
|
build: assets go_binary
|
|
|
|
|