- Add real-time progress bar with percentage for S3 upload (file size/MB) - Replace repetitive polling output with single-line refreshing status - Show elapsed time and poll count during transcription polling - Add .claude/ to .gitignore Co-Authored-By: Claude <noreply@anthropic.com>
42 lines
324 B
Plaintext
42 lines
324 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/
|
|
|
|
.claude/ |