- Switch from MinIO to boto3 for S3-compatible object storage (Cloudflare R2)
- Rename storage config vars from R2_* to generic S3_*
- Organize root directory: docs/, tools/, output/, Archive/{audio,results}/
- Output transcriptions to output/ directory
- Add transcribe_legacy.py, transcribe_all.py, and docs
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
314 B
Plaintext
40 lines
314 B
Plaintext
# Virtual environment
|
|
.venv/
|
|
venv/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
Thumbs.db
|
|
Desktop.ini
|
|
.DS_Store
|
|
|
|
# Audio files (large)
|
|
*.wav
|
|
*.mp3
|
|
*.flac
|
|
*.ogg
|
|
*.m4a
|
|
*.wma
|
|
*.aac
|
|
|
|
# Output
|
|
output/
|
|
Archive/
|
|
|
|
# Tools
|
|
tools/ |