This commit is contained in:
Wang Sen Di
2025-12-09 11:55:44 +08:00
commit 9764b5f968
24 changed files with 597 additions and 0 deletions

8
boot/env.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# shellcheck disable=SC2034
# 在每一次间隔时间后读取的变量, 作用容易入口文件
# 用于在容器运行的状态下, 远程修改 git 拉取间隔时间
# 注意,最小值不能大于最大值, 否则客户端 Git 死循环
INTERVAL_MIN=200 # 间隔最小值
INTERVAL_MAX=300 # 间隔最大值