From da26f142eea85d960142fb5dc1e537e7a6484aba Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Tue, 7 Apr 2026 18:37:30 +0100 Subject: [PATCH] chore: ignore local dev sqlite + generated schema artifacts Local dev runs with the SQLite backend leave `wfe.db{,-shm,-wal}` files in the repo root, and `workflows.schema.yaml` is a generated artifact we prefer to fetch from the running server's `/schema/workflow.yaml` endpoint rather than checking in. --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index e950654..80e57fa 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,9 @@ Cargo.lock *.swo .DS_Store .env* +# Local dev SQLite database + WAL companions +/wfe.db +/wfe.db-shm +/wfe.db-wal +# Auto-generated schema artifact (server endpoint is the source of truth) +/workflows.schema.yaml