55 lines
603 B
Plaintext
55 lines
603 B
Plaintext
# Python bytecode/cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Test/type/lint/cache artifacts
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
|
|
# Runtime logs
|
|
*.log
|
|
logs/*
|
|
!logs/.gitkeep
|
|
|
|
# Generated runtime output
|
|
output/
|
|
data/guidance/
|
|
|
|
# Local source/input files and upload fixtures
|
|
origin/
|
|
|
|
# Local secrets/config
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Frontend dependencies/build output
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
.next/
|
|
.vite/
|
|
|
|
# IDE and OS files
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Office/editor temporary files
|
|
~$*
|
|
*.tmp
|
|
*.swp
|
|
*.swo
|