mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
67 lines
765 B
Text
67 lines
765 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
env/
|
|
build/
|
|
dist/
|
|
packages/cli/assets/python/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.coverage
|
|
coverage/
|
|
htmlcov/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.hypothesis/
|
|
|
|
# Secrets and local environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.crt
|
|
*.cert
|
|
|
|
# Node
|
|
node_modules/
|
|
.next/
|
|
.source/
|
|
.npm/
|
|
.pnpm-store/
|
|
*.tsbuildinfo
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Local project runtime state
|
|
.ktx/
|
|
**/.devtools/
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
!packages/cli/assets/demo/orbit/demo.db
|
|
!packages/context/test/fixtures/relationship-benchmarks/**/data.sqlite
|
|
|
|
# Private local agent overlays
|
|
.agents
|
|
.claude
|
|
.superpowers
|
|
|
|
# Editors and OS files
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vercel
|