commit 981106d3df3658153219111c7fe25f12582914c3 Author: Brian Rogers Date: Sat May 30 15:10:08 2026 -0600 adding git ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..73ca685 --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# ---- Python ---- +__pycache__/ +*.py[cod] +*$py.class +*.so + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ + +# Packaging / build +build/ +dist/ +*.egg-info/ +.eggs/ + +# Test / coverage +.pytest_cache/ +.coverage +.coverage.* +htmlcov/ +.tox/ + +# ---- Soundboard runtime state ---- +# Auto-generated; contains machine-specific device names and absolute file paths. +config.json +soundboard/config.json + +# User audio files dropped into the default folder (keep the folder, not its contents). +soundboard/sounds/* +!soundboard/sounds/.gitkeep + +# ---- Editors / OS ---- +.idea/ +.vscode/ +*.swp +.DS_Store +Thumbs.db +.agents +.claude