63 lines
816 B
Plaintext
63 lines
816 B
Plaintext
# ========== 临时 ==========
|
|
app-expo/
|
|
api-bak/
|
|
|
|
# ========== 通用 ==========
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.tmp
|
|
*.log
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.worktrees/
|
|
|
|
# ========== 环境变量 ==========
|
|
.env
|
|
.env.local
|
|
!.env.production
|
|
|
|
# ========== IDE ==========
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# ========== Python ==========
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
.venv
|
|
.pytest_cache/
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# ========== 数据库 ==========
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# ========== 提交辅助 ==========
|
|
commit_msg_*.txt
|
|
commit_plan.txt
|
|
commit_messages.txt
|
|
|
|
# ========== API 项目特定 ==========
|
|
api/certs/*.pem
|
|
api/certs/*.p12
|
|
api/models/certs/
|
|
api/models/whisper/
|
|
api/scripts/output/
|
|
|
|
# ========== Android ==========
|
|
app-android/gradle/config.properties
|
|
app-android/.kotlin/
|
|
|
|
# ========== 其他 ==========
|
|
certs/
|