chore: 清理根目录冗余文件(翻译工具/旧脚本/调试文件/截图等)

删除约50个文件:
- 翻译/i18n工具 21个(cjk_*、extract_*、apply_*等)
- 部署脚本 3个(build_and_push、deploy)
- 诊断调试文件 15个(check_*、query_*、db_output等)
- 旧截图 1个
- 杂项配置文件 3个(.antigravityrules .cursorrules tm_schema.txt)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Developer
2026-06-16 14:04:53 +08:00
parent 9330256e13
commit 3d73618270
49 changed files with 5 additions and 14188 deletions
-38
View File
@@ -1,38 +0,0 @@
#!/bin/bash
set -e
# 进入脚本所在目录
cd "$(dirname "$0")"
echo "======================================================="
echo "开始构建并推送到 registry.cn-qingdao.aliyuncs.com/fzxs/"
echo "======================================================="
echo ">> 构建 server 镜像..."
if ! docker build -t registry.cn-qingdao.aliyuncs.com/fzxs/aurak-server:latest -f ./server/Dockerfile ./server; then
echo "server 构建失败!请检查 Docker 是否运行以及构建环境。"
exit 1
fi
echo ">> 构建 web 镜像..."
if ! docker build -t registry.cn-qingdao.aliyuncs.com/fzxs/aurak-web:latest --build-arg VITE_API_BASE_URL=/api -f ./web/Dockerfile .; then
echo "web 构建失败!请检查 Docker 是否运行以及构建环境。"
exit 1
fi
echo ">> 推送 server 镜像..."
if ! docker push registry.cn-qingdao.aliyuncs.com/fzxs/aurak-server:latest; then
echo "推送 server 失败!请检查是否已登录阿里云镜像仓库:"
echo "docker login --username=YOUR_USERNAME registry.cn-qingdao.aliyuncs.com"
exit 1
fi
echo ">> 推送 web 镜像..."
if ! docker push registry.cn-qingdao.aliyuncs.com/fzxs/aurak-web:latest; then
echo "推送 web 失败!请检查是否已登录阿里云镜像仓库:"
exit 1
fi
echo "======================================================="
echo "镜像构建并推送成功!"
echo "======================================================="