.gitignore

 1# SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
 2#
 3# SPDX-License-Identifier: CC0-1.0
 4
 5# Binary files
 6/planning-mcp-server
 7*.exe
 8*.exe~
 9*.dll
10*.so
11*.dylib
12
13# Test binary, built with `go test -c`
14*.test
15
16# Output of the go coverage tool
17*.out
18
19# Dependency directories
20vendor/
21
22# IDE and editor files
23.idea/
24.vscode/
25*.swp
26*.swo
27*~
28
29# Crush Agent stuff
30.crush/
31
32# macOS
33.DS_Store
34
35# Build artifacts
36/dist/
37/bin/
38
39# Log files
40*.log