| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- # Python-generated files
- __pycache__/
- *.py[oc]
- build/
- dist/
- wheels/
- *.egg-info
- # Virtual environments
- .venv
- venv/
- env/
- # Configuration files with sensitive data
- config
- .env
- *.env
- .env.local
- .env.production
- # Personal data files
- myinfo.json
- youtube_tokens.json
- platforms/youtube/youtube_tokens.json
- platforms/spotify/spotify_tokens.json
- platforms/reddit/reddit_tokens.json
- # User-generated archives (包含个人日报、周报、月报等敏感数据)
- archive/
- raw/
- # Configuration files with user-specific data
- dimension_config.json
- dimension_history.json
- themes.yaml
- channels.yaml
- # IDE and editor files
- .vscode/
- .idea/
- *.swp
- *.swo
- *~
- # OS generated files
- .DS_Store
- .DS_Store?
- ._*
- .Spotlight-V100
- .Trashes
- ehthumbs.db
- Thumbs.db
- # Logs
- *.log
- logs/
- # Temporary files
- *.tmp
- *.temp
|