.gitignore 521 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @"
  2. # --- 环境变量与敏感信息 ---
  3. .env
  4. # --- Python ---
  5. __pycache__/
  6. *.py[cod]
  7. *.pyo
  8. *.egg-info/
  9. dist/
  10. build/
  11. *.egg
  12. .eggs/
  13. # --- Jupyter Notebook ---
  14. .ipynb_checkpoints/
  15. *.ipynb_checkpoints/
  16. # --- 虚拟环境 ---
  17. venv/
  18. .venv/
  19. env/
  20. envs/
  21. .conda/
  22. virtualenv/
  23. # --- IDE/编辑器 ---
  24. .vscode/
  25. .idea/
  26. *.swp
  27. *.swo
  28. *~
  29. .DS_Store
  30. Thumbs.db
  31. # --- 日志与临时文件 ---
  32. *.log
  33. *.tmp
  34. # --- 运行时输出 ---
  35. output/
  36. "@ | Set-Content -Path "Co-creation-projects\Johnx-w-EmailDigestAgent\.gitignore" -Encoding UTF8