Files
life-echo/.gitignore
Kevin 22d282dc01 feat(api): use Tencent 16k_zh_large ASR and remove local Whisper
Standardize ASR on Tencent's dialect-capable engine across all environments,
drop faster-whisper from dependencies and deployment images, and add an
expo-sqlite iOS vendor sync plus pod install in prebuild to prevent native
build failures after npm install.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-25 10:21:41 +08:00

85 lines
1.1 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Python
__pycache__/
.pytest_cache/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv
# 环境变量
.env
.env.*
!.env.example
!api/.env.staging
!api/.env.production
!app-expo/env/
!app-expo/env/**
# 证书与私钥勿提交README 可提交)
api/certs/*.pem
api/certs/*.p12
# 数据库文件
*.db
*.sqlite
*.sqlite3
/api/backups/*.sql
# 允许提交固定命名的历史迁移用 dump其余 *.sql 仍忽略)
!/api/backups/life_echo_20260313_182756.sql
# IDE
.idea/
.vscode/
*.iml
# Android Studio
# 若启用 #GRADLE_LOCAL_JAVA_HOME
/app-android/gradle/config.properties
# AGP/Kotlin 本地缓存
/app-android/.kotlin/
# 临时文件
*.tmp
*.log
*.swp
*.swo
*~
# 提交消息临时文件
commit_msg_*.txt
commit_plan.txt
commit_messages.txt
# 操作系统
.DS_Store
Thumbs.db
# 构建文件
build/
dist/
*.egg-info/
app-expo/coverage/
api/models/certs/
api/models/whisper/
# 脚本输出(预览 JSON/Markdown
api/scripts/output/
# 本地上传(不提交)
api/uploads/
# 软著:源码摘录 PDF默认生成在仓库根目录
/copyright_source_listing.pdf
certs/
# Git worktrees
.worktrees/
# Node
node_modules/