Files
scheduler/Makefile
2024-12-29 12:44:14 +08:00

15 lines
293 B
Makefile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

build:
go build
deploy:
go build -o scheduler
cp ./scheduler /opt/zscww_scheduler/scheduler
cp -r FrontEnd /opt/zscww_scheduler/FrontEnd
chmod +x /opt/zscww_scheduler/scheduler
echo "部署脚本执行完成记得放入member.csv数据文件"
default: build
clean:
rm ./scheduler