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) <noreply@anthropic.com>
31 lines
607 B
Plaintext
31 lines
607 B
Plaintext
# Python bytecode (this repo is also a gateway page-module — imported at runtime)
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Local env / secrets — NEVER commit the real .npmrc (holds the registry token)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.npmrc
|
|
!.npmrc.example
|
|
|
|
# Editor / OS
|
|
.DS_Store
|
|
*.local
|
|
.idea/
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
|
|
# Build caches
|
|
node_modules/.tmp/
|
|
*.tsbuildinfo
|
|
|
|
# NOTE: dist/ is intentionally NOT ignored. The gateway serves the committed
|
|
# build (the deploy host has no Node toolchain). Rebuild with `npm run build`
|
|
# and commit dist/ whenever the app changes.
|