mirror of
https://github.com/ZSCNetSupportDept/scheduler.git
synced 2025-10-28 04:25:03 +08:00
15 lines
293 B
Makefile
15 lines
293 B
Makefile
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
|