- Add BUILD.bazel across tidal, tidal-net, tidal-server, tidalctl for bzlmod build - Add tidal/ crate docs (README, CHANGELOG, CONTRIBUTING, AGENTS, CLAUDE, API, ARCHITECTURE) and ai-lookup reference - Add docker standalone/cluster/deploy images, compose, and prometheus config - Harden WAL (batch format, writer, dedup, diagnostics), text syncer/collectors, and vector registry - Expand tidalctl CLI and tests; restructure WAL/visibility integration test suites - Refine tidal-net transport/client/server and tidal-server cluster/scatter-gather
26 lines
630 B
Plaintext
26 lines
630 B
Plaintext
# Allowlist .dockerignore — ignore everything, then re-include only the
|
|
# workspace sources cargo needs to build `-p tidal-server` from the repo root.
|
|
# The `tidal/docker/*` Dockerfiles `COPY . .` against this repository root.
|
|
*
|
|
|
|
# Workspace manifests + lockfile (cargo needs every member manifest present to
|
|
# resolve the workspace graph, even when building a single member).
|
|
!Cargo.toml
|
|
!Cargo.lock
|
|
|
|
# Member crates
|
|
!tidal
|
|
!tidal-net
|
|
!tidal-server
|
|
!tidalctl
|
|
!applications
|
|
|
|
# Re-exclude heavy / generated / secret paths nested inside the allowed dirs.
|
|
**/target
|
|
**/node_modules
|
|
**/.next
|
|
**/*.tsbuildinfo
|
|
**/.env
|
|
**/.env.*
|
|
.git
|