diff options
| author | codecrafters-bot <hello@codecrafters.io> | 2025-12-05 03:43:32 +0000 |
|---|---|---|
| committer | codecrafters-bot <hello@codecrafters.io> | 2025-12-05 03:43:32 +0000 |
| commit | eb98380e577eb3a660eaed9bd83f6f9a660cd609 (patch) | |
| tree | 78626606e82168b59b3344fa42924b520fd620b1 /.gitignore | |
| download | sqlite-zig-eb98380e577eb3a660eaed9bd83f6f9a660cd609.tar.gz sqlite-zig-eb98380e577eb3a660eaed9bd83f6f9a660cd609.zip | |
init [skip ci]
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 +*~ |