| # macOS and VS Code .gitignore |
| |
| # ============================================================================= |
| # macOS |
| # ============================================================================= |
| # General |
| .DS_Store |
| .AppleDouble |
| .LSOverride |
| |
| # Icon must end with two \r |
| Icon |
| |
| # Thumbnails |
| ._* |
| |
| # Files that might appear in the root of a volume |
| .DocumentRevisions-V100 |
| .fseventsd |
| .Spotlight-V100 |
| .TemporaryItems |
| .Trashes |
| .VolumeIcon.icns |
| .com.apple.timemachine.donotpresent |
| |
| # Directories potentially created on remote AFP share |
| .AppleDB |
| .AppleDesktop |
| Network Trash Folder |
| Temporary Items |
| .apdisk |
| |
| # ============================================================================= |
| # VS Code |
| # ============================================================================= |
| .vscode/ |
| !.vscode/settings.json |
| !.vscode/tasks.json |
| !.vscode/launch.json |
| !.vscode/extensions.json |
| *.code-workspace |
| |
| # Local History for Visual Studio Code |
| .history/ |
| |
| # ============================================================================= |
| # Python |
| # ============================================================================= |
| # Byte-compiled / optimized / DLL files |
| __pycache__/ |
| **/__pycache__/ |
| utils/__pycache__/ |
| *.py[cod] |
| *$py.class |
| |
| # Distribution / packaging |
| .Python |
| build/ |
| develop-eggs/ |
| dist/ |
| downloads/ |
| eggs/ |
| .eggs/ |
| lib/ |
| lib64/ |
| parts/ |
| sdist/ |
| var/ |
| wheels/ |
| share/python-wheels/ |
| *.egg-info/ |
| .installed.cfg |
| *.egg |
| MANIFEST |
| |
| # PyInstaller |
| *.manifest |
| *.spec |
| |
| # Installer logs |
| pip-log.txt |
| pip-delete-this-directory.txt |
| |
| # Unit test / coverage reports |
| htmlcov/ |
| .tox/ |
| .nox/ |
| .coverage |
| .coverage.* |
| .cache |
| nosetests.xml |
| coverage.xml |
| *.cover |
| *.py,cover |
| .hypothesis/ |
| .pytest_cache/ |
| cover/ |
| |
| # Jupyter Notebook |
| .ipynb_checkpoints |
| |
| # IPython |
| profile_default/ |
| ipython_config.py |
| |
| # pyenv |
| .python-version |
| |
| # pipenv |
| Pipfile.lock |
| |
| # poetry |
| poetry.lock |
| |
| # pdm |
| .pdm.toml |
| |
| # PEP 582 |
| __pypackages__/ |
| |
| # Environments |
| .env |
| .venv |
| env/ |
| venv/ |
| ENV/ |
| env.bak/ |
| venv.bak/ |
| simexr_venv/ |
| |
| # mypy |
| .mypy_cache/ |
| .dmypy.json |
| dmypy.json |
| |
| # Pyre type checker |
| .pyre/ |
| |
| # pytype static type analyzer |
| .pytype/ |
| |
| # Cython debug symbols |
| cython_debug/ |
| |
| # ============================================================================= |
| # Project Specific |
| # ============================================================================= |
| # Database files |
| *.db |
| *.sqlite |
| *.sqlite3 |
| mcp.db |
| |
| # Configuration files with sensitive data |
| config.yaml |
| utils/config.yaml |
| |
| # Temporary and cache directories |
| temp_models/ |
| external_models/ |
| temp/ |
| tmp/ |
| physics/models/ |
| cache/ |
| |
| # Results and media files |
| results_media/ |
| *.png |
| *.jpg |
| *.jpeg |
| *.gif |
| *.svg |
| *.pdf |
| *.mp4 |
| *.avi |
| *.mov |
| |
| # Log files |
| *.log |
| logs/ |
| runner.log |
| |
| # API keys and secrets |
| .env |
| .env.local |
| .env.production |
| secrets.json |
| api_keys.json |
| |
| # Test results |
| test_results.json |
| test_output/ |
| |
| # Backup files |
| *.bak |
| *.backup |
| *.old |
| *.orig |
| *.save |