docs: project docs, scripts, deployment configs, and evidence

This commit is contained in:
2026-04-02 11:22:17 +08:00
parent 4718980ab5
commit bbeeb63dfa
396 changed files with 165018 additions and 0 deletions

23
cleanup.bat Normal file
View File

@@ -0,0 +1,23 @@
@echo off
REM 清理D:\project目录下的临时文件
REM 运行方式把此文件放到D:\project目录双击运行
echo 正在清理临时文件...
REM 删除txt临时文件
del /Q *.txt 2>nul
REM 删除bat脚本
del /Q *.bat 2>nul
REM 删除sh脚本
del /Q *.sh 2>nul
REM 删除ps1脚本
del /Q *.ps1 2>nul
REM 删除py脚本
del /Q *.py 2>nul
echo 清理完成!
pause