docs(phase-00/01): add cargo init step to dev environment lesson#322
docs(phase-00/01): add cargo init step to dev environment lesson#322vasifsy wants to merge 1 commit into
Conversation
📝 WalkthroughWalkthroughThis change adds a documentation step in the Rust setup section instructing readers to run ChangesDocumentation update
Estimated code review effort: 1 (Trivial) | ~2 minutes Suggested reviewers: rohitg00 PoemA rabbit hops to Rust's front door, 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@phases/00-setup-and-tooling/01-dev-environment/docs/en.md`:
- Around line 106-110: The Rust setup instructions currently use cargo init
without accounting for its default VCS side effects. Update the guidance in the
dev-environment docs to reference cargo init with --vcs none, or explicitly
mention the generated learner-local .gitignore behavior, so the initialization
remains clean and deterministic. Keep the fix focused on the setup step
described by cargo init in the docs entry.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 96fd1f6d-414b-4a3b-854e-6a0909db57ab
📒 Files selected for processing (1)
phases/00-setup-and-tooling/01-dev-environment/docs/en.md
5772e81 to
80242f4
Compare
|
@vasifsy is attempting to deploy a commit to the OSS program Team on Vercel. A member of the Team first needs to authorize it. |
What this PR does
Adds a
cargo init --vcs nonestep to Step 4 (Rust) of the Phase 0 dev environment lesson, so learners initialize a Cargo project right after installing the toolchain and can build/run Rust lessons withcargo.This should address #259
Kind of change
Checklist
cargo initverified locally on a fresh clone)docs/en.mdclaimsPhase / lesson
Phase 0 · 01-dev-environment
Notes for reviewer
target/andCargo.lockare already covered by the repo.gitignore. The instruction uses--vcs noneso cargo skips its git integration and leaves the learner's local.gitignoreuntouched.