← back to AgentAbrams

.gitignore

39 lines

# Secrets
.env
.env.*
!.env.example
client_secret.json
youtube_token.pickle
*.pickle

# Private notes (NEVER commit)
private/

# OS
.DS_Store
Thumbs.db

# Python
__pycache__/
*.pyc
*.pyo
.venv/
venv/
*.egg-info/

# Media output (generated, not committed)
media/output/
podcast/output/

# Logs
*.log

# Build
dist/
build/

# Standing-rule additions (2026-05-07)
node_modules/
tmp/
.next/