.gitignore 789 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Python-generated files
  2. __pycache__/
  3. *.py[oc]
  4. build/
  5. dist/
  6. wheels/
  7. *.egg-info
  8. # Virtual environments
  9. .venv
  10. venv/
  11. env/
  12. # Configuration files with sensitive data
  13. config
  14. .env
  15. *.env
  16. .env.local
  17. .env.production
  18. # Personal data files
  19. myinfo.json
  20. youtube_tokens.json
  21. platforms/youtube/youtube_tokens.json
  22. platforms/spotify/spotify_tokens.json
  23. platforms/reddit/reddit_tokens.json
  24. # User-generated archives (包含个人日报、周报、月报等敏感数据)
  25. archive/
  26. raw/
  27. # Configuration files with user-specific data
  28. dimension_config.json
  29. dimension_history.json
  30. themes.yaml
  31. channels.yaml
  32. # IDE and editor files
  33. .vscode/
  34. .idea/
  35. *.swp
  36. *.swo
  37. *~
  38. # OS generated files
  39. .DS_Store
  40. .DS_Store?
  41. ._*
  42. .Spotlight-V100
  43. .Trashes
  44. ehthumbs.db
  45. Thumbs.db
  46. # Logs
  47. *.log
  48. logs/
  49. # Temporary files
  50. *.tmp
  51. *.temp