Files
ai_wht_wechat/.gitignore
2026-01-06 19:36:42 +08:00

165 lines
2.7 KiB
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.

# ============================================
# IDE 和编辑器
# ============================================
.DS_Store
.idea/
.vscode/
*.swp
*.swo
*~
# ============================================
# Go 后端相关
# ============================================
# Go 编译产物
go_backend/main
go_backend/main.exe
go_backend/*.exe
go_backend/*.dll
go_backend/*.so
go_backend/*.dylib
go_backend/ai_xhs
go_backend/ai_xhs.exe
# Go 测试和覆盖率
go_backend/*.test
go_backend/*.out
go_backend/coverage.txt
go_backend/coverage.html
# Go 依赖
go_backend/vendor/
# ============================================
# Python 后端相关
# ============================================
# Python 虚拟环境
backend/venv/
backend/env/
backend/.venv/
backend/__pycache__/
backend/**/__pycache__/
backend/*.pyc
backend/*.pyo
backend/*.pyd
backend/.Python
# Python 测试和覆盖率
backend/.pytest_cache/
backend/.coverage
backend/htmlcov/
# Playwright 浏览器缓存
backend/.local-chromium/
backend/.local-firefox/
backend/.local-webkit/
backend/ms-playwright/
# 敏感配置文件(保留示例文件)
backend/cookies.json
backend/test_cookies.json
backend/login_state.json
backend/storage_states/
# ============================================
# 微信小程序相关
# ============================================
# 依赖目录
node_modules/
miniprogram/miniprogram_npm/
miniprogram_npm/
# 构建产物
dist/
build/
# 日志文件
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# 临时文件
*.tmp
*.temp
.cache/
# ============================================
# 配置和敏感信息
# ============================================
# 环境变量文件
# 数据库备份
*.sql.bak
*.sql.gz
# 微信开发者工具相关
project.config.json.bak
project.private.config.json
# TypeScript 编译缓存
*.tsbuildinfo
# 测试覆盖率
coverage/
*.lcov
.nyc_output/
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
Desktop.ini
$RECYCLE.BIN/
# 编辑器备份文件
*~
*.bak
*.orig
# ============================================
# 运行时文件和日志
# ============================================
# 进程ID文件
*.pid
go_backend/*.pid
backend/*.pid
logs/*.pid
# 日志目录
logs/
# 运行时数据
go_backend/data/
backend/screenshots/
backend/videos/
# ============================================
# 压缩和打包文件
# ============================================
*.zip
*.tar.gz
*.rar
*.7z
# ============================================
# 其他项目特定文件
# ============================================
# 小红书MCP项目如果不需要版本控制
xiaohongshu-mcp-main/cookies/
xiaohongshu-mcp-main/*.log
# 临时测试文件
test_*.html
test_*.json