# Environment variables with secrets .env # Python __pycache__/ *.py[cod] *$py.class *.so .Python # Virtual environments (local project venv) .venv/ venv/ ENV/ # UV lock file uv.lock # IDE .vscode/ .idea/ *.swp *.swo *~ # OS .DS_Store Thumbs.db # User-only folders (manual use, not app runtime) user_io/ user_dev/ user_archive/ # Runtime cache (app creates, temporary, served via app download) _cache/ # Runtime logs (app creates, temporary, for debugging) _log/ # Testing .pytest_cache/ .coverage htmlcov/ # Test fixtures - binary files test/fixtures/*.png test/fixtures/*.jpg test/fixtures/*.jpeg # Achievement report images attachments/ # Build build/ dist/ *.egg-info/