49 lines
971 B
Plaintext
49 lines
971 B
Plaintext
# 根目录忽略
|
||
.DS_Store
|
||
*.zip
|
||
.env
|
||
.env.*
|
||
!.env.*.example
|
||
__pycache__/
|
||
*.pyc
|
||
*.pyo
|
||
log/
|
||
tmp/
|
||
|
||
# 永不上传到 GitHub
|
||
开发文档/
|
||
|
||
# 二进制/压缩/临时产物
|
||
*.exe
|
||
*.gz
|
||
*.tar
|
||
*.tgz
|
||
*.bak
|
||
|
||
# 各子项目已有 .gitignore,此处仅补充分支通用项
|
||
node_modules/
|
||
|
||
# 小程序本地配置
|
||
miniprogram/project.private.config.json
|
||
|
||
# 管理端本地构建缓存
|
||
soul-admin/.vite/
|
||
|
||
# API 本地运行产物与上传目录
|
||
soul-api/uploads/
|
||
soul-api/wechat/info.log
|
||
soul-api/soul-api-linux
|
||
soul-api/soul-api-new
|
||
|
||
# 备份文件
|
||
*.backup
|
||
|
||
# 本机运营凭证(karuo-party;保留 credentials/README.md)
|
||
.cursor/skills/karuo-party/credentials/cookies/
|
||
.cursor/skills/karuo-party/credentials/.feishu_tokens.json
|
||
.cursor/skills/karuo-party/credentials/*.json
|
||
!.cursor/skills/karuo-party/credentials/README.md
|
||
|
||
# Cursor 索引减负:db-exec 依赖(仓库根已有 node_modules/ 规则,此处显式强调子路径)
|
||
.cursor/scripts/db-exec/node_modules/
|