Add CLAUDE.md
This commit is contained in:
parent
ecee54da9f
commit
1192caeb5d
1 changed files with 28 additions and 0 deletions
28
CLAUDE.md
Normal file
28
CLAUDE.md
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Claude Instructions
|
||||
|
||||
## Project Overview
|
||||
DataBuild is a bazel-based data build system. Key files:
|
||||
- [`databuild.proto`](databuild/databuild.proto) - System interfaces
|
||||
- [`manifesto.md`](manifesto.md) - Project philosophy
|
||||
- [`core-concepts.md`](core-concepts.md) - Core concepts
|
||||
|
||||
## Build & Test
|
||||
```bash
|
||||
# Run all tests
|
||||
./scripts/bb_test_all
|
||||
|
||||
# Remote testing
|
||||
./scripts/bb_remote_test_all
|
||||
|
||||
# Do not try to `bazel test //examples/basic_graph/...`, as this will not work.
|
||||
```
|
||||
|
||||
## Project Structure
|
||||
- `databuild/` - Core system (Rust/Proto)
|
||||
- `examples/` - Example implementations
|
||||
- `scripts/` - Build utilities
|
||||
|
||||
## Key Components
|
||||
- Graph analysis/execution in Rust
|
||||
- Bazel rules for job orchestration
|
||||
- Java/Python examples for different use cases
|
||||
Loading…
Reference in a new issue