From 5080965baa76a534d1617d782e67fcc9fb8cc91a Mon Sep 17 00:00:00 2001 From: eugenioenko Date: Sat, 9 May 2026 20:29:57 -0700 Subject: [PATCH] fix: remove SQLite WAL/shm files in make fresh Stale -shm files can cause disk I/O errors when restarting the server after a crash or branch switch. Co-Authored-By: Claude Opus 4.6 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8a275df..c4aca08 100644 --- a/Makefile +++ b/Makefile @@ -99,7 +99,7 @@ docker-compose: # Fresh start: wipe local DB, rebuild, init, and launch fresh: build - rm -f ./autentico.db .env + rm -f ./autentico.db ./autentico.db-shm ./autentico.db-wal .env ./$(APP_NAME) init ./$(APP_NAME) start