Files
autoclip/.taurignore
Kris K 593cc62bd5 fix: desktop client, CI fixes, and backend (#61)
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.
2026-05-28 15:48:49 +08:00

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