mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-25 08:48:08 +02:00
Initial open-source release
This commit is contained in:
commit
1a42152e6f
1199 changed files with 257054 additions and 0 deletions
61
.gitignore
vendored
Normal file
61
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.so
|
||||
.Python
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
build/
|
||||
dist/
|
||||
*.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/
|
||||
.npm/
|
||||
.pnpm-store/
|
||||
*.tsbuildinfo
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# Local project runtime state
|
||||
.klo/
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
!packages/cli/assets/demo/orbit/demo.db
|
||||
!packages/context/test/fixtures/relationship-benchmarks/**/data.sqlite
|
||||
|
||||
# Private local agent overlays
|
||||
.agents/
|
||||
.claude/
|
||||
|
||||
# Editors and OS files
|
||||
.idea/
|
||||
.vscode/
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
Loading…
Add table
Add a link
Reference in a new issue