From 38a3aa6bbf2801bd396c76c0ab8ffe52fe4d7457 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Mon, 4 May 2026 22:23:08 +0200 Subject: [PATCH] fix: update .gitignore to include db-shm and db-wal files Co-authored-by: Copilot --- .dockerignore | 4 ++++ .gitignore | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index f5f624d..2f11176 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,3 +4,7 @@ target/ *.db *.db-shm *.db-wal +.cargo/ +.sqlx/ +docs/ +dev.db diff --git a/.gitignore b/.gitignore index 2f4f24a..073e5f5 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,9 @@ .env.prod *.db +*db-shm +*db-wal .worktrees/ .superpowers/ -docs/ \ No newline at end of file +docs/