diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7e2b058 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Database files used for testing +*.db + +# Zig build artifacts +main +zig-cache/ +.zig-cache/ +zig-out/ + +# Compiled binary output +bin/ +!bin/.gitkeep + +# Ignore any .o or .h files generated during build +*.o +*.h + +# Ignore OS and editor specific files +**/.DS_Store +*.swp +*~ |