initial
This commit is contained in:
commit
da8c1563c6
7 changed files with 935 additions and 0 deletions
51
.gitignore
vendored
Normal file
51
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# Zig build artifacts
|
||||
zig-out/
|
||||
zig-cache/
|
||||
.zig-cache/
|
||||
|
||||
# Generated PDFs (test outputs)
|
||||
*.pdf
|
||||
|
||||
# Test data files
|
||||
*.json
|
||||
!build.json
|
||||
*.pdm
|
||||
*.bin
|
||||
*.png
|
||||
*.sh
|
||||
*.ndjson
|
||||
|
||||
# Build binaries
|
||||
*.o
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.exe
|
||||
|
||||
# IDE and editor files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.DS_Store
|
||||
.claude/
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
*.log
|
||||
|
||||
# Test directories
|
||||
data/
|
||||
output/
|
||||
services/
|
||||
template_configs/
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*.backup
|
||||
|
||||
# OS specific
|
||||
Thumbs.db
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue