Conversation
- Added `docs/cookbook/src/recipes/grpc_integration.md` - Added `docs/cookbook/src/recipes/server_side_rendering.md` - Added `docs/cookbook/src/recipes/ai_integration.md` - Updated `docs/cookbook/src/SUMMARY.md` - Updated `docs/cookbook/src/learning/curriculum.md` with Phase 5 - Updated `docs/.agent/docs_coverage.md` and `docs/.agent/run_report_2025-02-24.md`
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
- Added `docs/cookbook/src/recipes/grpc_integration.md` - Added `docs/cookbook/src/recipes/server_side_rendering.md` - Added `docs/cookbook/src/recipes/ai_integration.md` - Fixed API usage in `docs/cookbook/src/recipes/websockets.md` - Updated `docs/cookbook/src/SUMMARY.md` - Updated `docs/cookbook/src/learning/curriculum.md` with Phase 5 - Updated `docs/.agent/docs_coverage.md` and `docs/.agent/run_report_2025-02-24.md`
| // and the "templates" directory exists. | ||
| let app = RustApi::new().route("/", get(index)); | ||
|
|
||
| println!("Listening on http://localhost:3000"); | ||
| RustApi::serve("0.0.0.0:3000", app).await.unwrap(); |
There was a problem hiding this comment.
RustApi::new()
.route("/", get(hello))
.run("0.0.0.0:3000") // Adres olarak "0.0.0.0:3000" kullanılıyor
.await
.unwrap();
There was a problem hiding this comment.
Fixed. Replaced RustApi::serve with app.run.
…ialized-skills-update-9114956679939804033 docs: Add Phase 5 (Specialized Skills) and recipes for gRPC, SSR, and AI dd502c2
Added comprehensive documentation for specialized integration patterns including gRPC (rustapi-grpc), Server-Side Rendering (rustapi-view), and AI Integration (rustapi-toon). Updated the Learning Path with a new Phase 5 and Capstone project.
PR created automatically by Jules for task 9114956679939804033 started by @Tuntii