diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..53ddbeb --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +assets: + cd ./ui && yarn build + +# TODO: Update this once go1.16 is released. +go_bin: + go1.16beta1 build -o asynqmon . + +# Target to build a release binary. +build: assets go_bin + +