ae2e07e626
- Python: pyproject.toml, pytest suite (unit + integration), README, examples - JavaScript: package.json, TypeScript definitions, node:test suite, README, examples - Nim: integration tests, examples, README, improved nimble tasks - Rust: fixed nodelay/localhost IPv6 bug, integration tests, examples, README - Added GitHub Actions CI for all 4 clients against Docker server - Added docker-compose.test.yml for local integration testing - Added .gitignore for each client
41 lines
480 B
Plaintext
41 lines
480 B
Plaintext
# Build
|
|
build/
|
|
nimcache/
|
|
nimblecache/
|
|
*.out
|
|
|
|
# Binaries (compiled test executables)
|
|
tests/test_all
|
|
tests/stress_test
|
|
benchmarks/bench_all
|
|
benchmarks/compare
|
|
clients/nim/tests/test_client
|
|
src/baradadb
|
|
src/barabadb/core/raft
|
|
|
|
# Temp
|
|
*.tmp
|
|
*.log
|
|
|
|
# Data
|
|
data/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# External references
|
|
GEL/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Rust
|
|
clients/rust/target/
|
|
|
|
# Nim compiled binaries
|
|
clients/nim/src/baradb/client
|
|
src/barabadb/storage/compaction
|
|
docker-compose.test.yml
|