chore: add CLAUDE.md for Claude Code project context#251
chore: add CLAUDE.md for Claude Code project context#251LEILEI0628 wants to merge 3 commits intoarana-db:feat/raftfrom
Conversation
Provide build commands, architecture overview, lint rules, PR title convention, command system guide, and testing instructions. Co-Authored-By: LEILEI <leilei20010628@gmail.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
- Fix runtime architecture description: remove "separate tokio runtimes" claim, describe async message channel communication accurately - Fix executor description: "thread pool" → "tokio async task pool" - Remove misleading CF numeric indices from storage model - Add crate name examples for unit test command - Add complete Python integration test steps with server startup Co-Authored-By: LEILEI <leilei20010628@gmail.com>
CLAUDE.md
Outdated
|
|
||
| # Run | ||
| cargo run --bin kiwi # Run server (debug) | ||
| cargo run --release # Run server (release) |
There was a problem hiding this comment.
这条命令从仓库根目录跑不通。当前仓库是 virtual workspace,根上没有可执行 package,cargo run --release 会直接失败;如果是想启动服务器,至少要把 server/kiwi 目标写全,比如 cargo run -p server --bin kiwi --release,或者明确说明需要先切到 src/server。
…space Co-Authored-By: LEILEI <leilei20010628@gmail.com>
Provide build commands, architecture overview, lint rules, PR title convention, command system guide, and testing instructions.