feat(learning): add flagship roadmap "Deploy a resilient three-tier app" (en/fr)#70
Merged
Merged
Conversation
OthmaneZ05
added a commit
that referenced
this pull request
Jul 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary of Changes
Adds the first full-length guided roadmap to the catalog: “Deploy a resilient three-tier app” (
roadmaps/resilient-three-tier.json, English reference) and its French translation (roadmaps/resilient-three-tier.fr.json, same roadmap id and step ids so progression carries across languages).Over 10 steps (~40 min, intermediate), the learner builds and operates a classic three-tier architecture against real containers: a web server backed by a seeded PostgreSQL, a hand-built second replica, an nginx load balancer as single entry point, a least-privilege lockdown of the database (with a deliberate validate-first failure to read), a chaos drill (stop a server while validating through the LB), and an auto-scaling group deployed from a golden image whose clones boot already serving. It exercises 7 of the 9 validator types (
container_running,table_exists,edge_exists,http_get_contains,lb_upstreams,port_denied,asg_replicas). Every step ships 2–3 graded hints plus a literal copy-paste solution.Content only — no engine, schema, or frontend changes.
Types of Changes
Verification & Testing
Automated Checks
npm run lintsuccessfully with no errorsnpm run buildsuccessfully with no compilation errorsnpm testsuccessfully (all tests pass)Manual Verification
npm run roadmap:validatepasses on both files; both appear in the player catalog with language, difficulty, step-count and duration badges.POST /api/learning/validatewith the exact network-config mutations the canvas UI produces).db:5432is actually refused while the store keeps serving; during the chaos drill nginx fails over to the surviving server; ASG clones serve on boot from the committed golden image.Checklist