Files
t-youtube/.gitignore
T
Gan, Jimmy a0ffa41c9e feat: replace yt-dlp cookies with YouTube Data API v3 OAuth
- Add auth.py: OAuth credential manager with auto-refresh
- Rewrite fetcher.py: use googleapiclient subscriptions/search
- Add google-auth, google-api-python-client dependencies
- Update docker-compose for config volume mount
- Add .gitignore for secrets (client_secret.json, token.pickle)
- Live test: 198 videos ingested from 229 channels
2026-06-24 00:14:16 +08:00

25 lines
331 B
Plaintext

# Database and logs
*.db
*.db-journal
*.log
# Python virtual environment & cache
.venv/
__pycache__/
*.pyc
.pytest_cache/
# Node dependencies and build output
node_modules/
dist/
.svelte-kit/
# User config & environment secrets
config/cookies.txt
.env
.env.*
.DS_Store
token.pickle
config/client_secret.json
config/token.pickle