veltnix/ScentNet
1
1# This file tells Git which files and folders to ignore.2 3# Ignore the Python virtual environment folder4venv/5 6# Ignore Python bytecode files and cache7__pycache__/8*.pyc9*.pyo10*.pyd11 12# Ignore editor-specific folders (VSCode, PyCharm)13.vscode/14.idea/15 16# Ignore OS-specific files (macOS, Windows)17.DS_Store18Thumbs.db