Files
AudioScribe/.gitignore
Misaka_Company 85dc3c77b3 Replace MinIO with S3-compatible storage and reorganize project structure
- 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>
2026-05-27 16:08:33 +08:00

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/