0b56ea92bc
Documentation-only release explaining the isRecipe flag: - isRecipe='true': Real recipes in the recipe box - isRecipe='false': Free-text stubs from meal planner OR old imported recipes never properly tagged (e.g. recipe/16282169_7055369 'Elsässer Flammkuchen') get_recipe_box filters strictly on isRecipe='true' — consistent with Family Wall app. Updated SPEC.md, README.md, CLAUDE.md with v0.11.8. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
52 lines
465 B
Plaintext
52 lines
465 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Environment files (may contain secrets)
|
|
.env
|
|
.env.*
|
|
|
|
# Test / coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
|
|
# Type checker
|
|
.mypy_cache/
|
|
|
|
# Ruff
|
|
.ruff_cache/
|
|
|
|
# Editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# uv
|
|
uv.lock
|
|
|
|
# Debug and test scripts
|
|
debug_*.py
|
|
probe_*.py
|
|
probe_*.txt
|
|
p*_err.txt
|
|
test_*.py
|
|
reference/
|