mirror of
https://github.com/zhouxiaoka/autoclip.git
synced 2026-09-02 22:15:18 +08:00
Squashed merge of fix/problem-fixes-from-main. - Desktop client (Tauri v2) wiring + packaging - CI workflow updates (Python 3.11, Rust toolchain, Tauri CLI, WebKit deps) - Backend test fix (test_missing_api_key respects CI-injected env var) - build_backend.py: support CI without venv + Windows-safe ASCII output Desktop build workflows (Linux/Windows/macOS) still failing — tracked in #65.
89 lines
916 B
Plaintext
89 lines
916 B
Plaintext
# Git 相关
|
|
.git
|
|
.gitignore
|
|
|
|
# Node.js 相关
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Python 相关
|
|
venv
|
|
.venv
|
|
venv_x86
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
.pytest_cache
|
|
.mypy_cache
|
|
.ruff_cache
|
|
|
|
# 构建产物
|
|
dist
|
|
dist-ssr
|
|
build
|
|
.cache
|
|
*.log
|
|
|
|
# PyInstaller 产物
|
|
*.exe
|
|
autoclip-backend*
|
|
backend/dist/
|
|
backend/build/
|
|
backend/*.spec
|
|
|
|
# 开发工具
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 数据文件
|
|
data/
|
|
logs/
|
|
temp/
|
|
uploads/
|
|
whisper_models/
|
|
backups/
|
|
|
|
# Tauri 构建缓存
|
|
src-tauri/target
|
|
|
|
# 后端数据
|
|
backend/data/
|
|
backend/__pycache__/
|
|
backend/.mypy_cache/
|
|
backend/.ruff_cache/
|
|
backend/tests/
|
|
backend/.pytest_cache/
|
|
|
|
# 前端开发文件
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
|
|
# 文档和脚本
|
|
docs/
|
|
scripts/
|
|
cleanup_backup/
|
|
control/
|
|
|
|
# Docker 相关
|
|
docker-compose*.yml
|
|
Dockerfile*
|
|
docker-*
|
|
|
|
# 其他
|
|
*.pid
|
|
*.rdb
|
|
*.spec
|