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
+2 -2
View File
@@ -208,8 +208,8 @@ async function run() {
// 5.1 并发
const [rA, rB] = await Promise.all([
api(adminT, 'POST', '/users', { username: 'z-race-' + Date.now(), password: 'Pass1234' }),
api(adminT, 'POST', '/users', { username: 'z-race-' + Date.now(), password: 'Pass1234' }),
api(adminT, 'POST', '/users', { username: 'z-race-a-' + Date.now(), password: 'Pass1234' }),
api(adminT, 'POST', '/users', { username: 'z-race-b-' + Date.now(), password: 'Pass1234' }),
]);
assert('5.1', '并发不同名不冲突', rA.status < 300 && rB.status < 300);
if (rA.status < 300) await api(adminT, 'DELETE', '/users/' + (rA.data?.user?.id || rA.data?.id));