From f36d3966ea640c10240bd1619e010ac44862d6ae Mon Sep 17 00:00:00 2001 From: Erik Date: Mon, 6 Jul 2026 10:46:01 +0200 Subject: [PATCH] chore: ignore Python bytecode (__pycache__) generated at gateway import This repo is also a gateway page-module; the kernel imports its Python (__init__.py, api/routes.py, _db.py) at runtime, which writes __pycache__/*.pyc into the working tree. Matches the sibling temper_rejects module's .gitignore. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index ab72633..645cd80 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# Python bytecode (this repo is also a gateway page-module — imported at runtime) +__pycache__/ +*.py[cod] + # Dependencies node_modules/ .pnp