首次提交

This commit is contained in:
zeronline
2026-06-25 08:39:47 +08:00
parent 20a93c703a
commit c5cccd346b
169 changed files with 24720 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# 寸进后端启动脚本(用于宝塔 Go 项目)
# 放在二进制同级目录下执行
DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$DIR"
# 加载 .env 文件(如果存在)
if [ -f .env ]; then
set -a
source .env
set +a
fi
exec ./inchstep-api