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.
This commit is contained in:
2026-04-07 18:37:30 +01:00
parent 1b873d93f3
commit da26f142ee

6
.gitignore vendored
View File

@@ -4,3 +4,9 @@ Cargo.lock
*.swo *.swo
.DS_Store .DS_Store
.env* .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