Files
mindfulness/.gitignore
吕新雨 d045237952 chore: 清理 Python 运行产物并忽略
- 从仓库移除 __pycache__/ 与 *.pyc 等运行产物,避免 git pull 覆盖未跟踪文件导致合并失败
- 在 .gitignore 增加 Python 运行产物忽略规则
2026-02-02 16:52:22 +08:00

51 lines
900 B
Plaintext
Raw 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.
# 项目唯一 .gitignore根目录
# 通用
.DS_Store
*.pem
# Python运行产物
__pycache__/
*.py[cod]
# Node / JS
node_modules/
npm-debug.*
yarn-debug.*
yarn-error.*
*.tsbuildinfo
# Expo / React Native
.expo/
dist/
web-build/
.metro-health-check*
expo-env.d.ts
# 原生构建产物
# - iOS为了支持 Widget 开发,需要提交 ios 工程与扩展源码;但忽略 Pods/build/用户配置等大体积或机器相关目录
client/ios/build/
client/ios/Pods/
client/ios/DerivedData/
client/ios/xcuserdata/
client/ios/**/xcuserdata/
client/ios/.xcode.env.local
# - Android当前阶段仅做客户端 iOS 侧能力android 仍保持忽略
client/android/
# iOS/Android 证书与密钥
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
# 环境变量(本地)
.env.local
.env*.local
# 防止把 client 内部的独立 git 备份目录提交进来
client/.git.backup/