| 1 | # Build artifacts |
| 2 | /target/ |
| 3 | *.pdb |
| 4 | *.dll |
| 5 | *.so |
| 6 | *.dylib |
| 7 | *.rlib |
| 8 | |
| 9 | # Sensitive environment files |
| 10 | .env |
| 11 | .env.* |
| 12 | |
| 13 | # Development |
| 14 | /node_modules/ |
| 15 | /.vscode/ |
| 16 | /.idea/ |
| 17 | *.swp |
| 18 | *.swo |
| 19 | *~ |
| 20 | .DS_Store |
| 21 | |
| 22 | # Git |
| 23 | /.git/ |
| 24 | /.gitignore |
| 25 | /.gitattributes |
| 26 | |
| 27 | # CI/CD |
| 28 | /.github/ |
| 29 | |
| 30 | # Python |
| 31 | __pycache__/ |
| 32 | *.py[cod] |
| 33 | .pytest_cache/ |
| 34 | venv/ |
| 35 | .venv/ |
| 36 | |
| 37 | # Logs |
| 38 | *.log |
| 39 | |
| 40 | # Generated |
| 41 | /outputs/ |
| 42 | /tmp/ |
| 43 | |
| 44 | # Local runtime state |
| 45 | /.deepseek/ |
| 46 | |
| 47 | # Claude Code artifacts |
| 48 | /.claude/ |
| 49 | /.ace-tool/ |
| 50 | |
| 51 | # Documentation (not needed at runtime), except schemas embedded via include_str! |
| 52 | /docs/ |
| 53 | !/docs/schemas/ |
| 54 | !/docs/schemas/** |
| 55 | /website/ |
| 56 | /*.md |
| 57 | !/README.md |
| 58 | !/CHANGELOG.md |
| 59 | |
| 60 | # Assets (screenshots, etc.) |
| 61 | /assets/ |
| 62 | |
| 63 | # Scripts |
| 64 | /scripts/ |
| 65 | |
| 66 | # Development configs |
| 67 | /.devcontainer/ |
| 68 | /config.example.toml |
| 69 |