Course · 5 lessons ~60 hr Intermediate

Rust in Production

Rust in Production covers: Zero to Production, Rust Programming By Example. Build and deploy a production Rust web service. End-to-end: API design, database, testing, CI/CD, observability. | Rails | Rust (Actix/Axum) | |-------|-----| | rails new | cargo new + add dependencies manually | | ActiveRecord migrations | sqlx + manual SQL migrations | | config/routes.rb | App::new().route() or Router | | rails test | cargo test + integration test binary | | config/environments/ | Compile-time configuration with config crate | | rails deploy | Single binary, no runtime needed, ~10MB | | Puma (multi-process + threads) | Tokio (async runtime, single process, thousands of tasks) | | New Relic / Datadog | tracing crate + OpenTelemetry |

reading · we frame, you read MIT or the canonical taught · we author, no canonical fits ↺ spirals back to earlier lessons
Course locked

Complete Rust Deep Dive first.

This course unlocks once you've finished its prerequisite. Open prerequisite →

5 lessons. Read in order; spiral back when you need to. By the end you'll have used the core ideas twice — once on the abstract, once on something you'll meet at work next week.