Module prereqs: sort Prerequisites lists numerically ascending (#102)
CI / check (push) Successful in 5s
Sync course wiki / sync-wiki (push) Successful in 5s

This commit was merged in pull request #102.
This commit is contained in:
2026-06-23 14:06:28 -04:00
parent edf3f34336
commit 74f23534c0
9 changed files with 49 additions and 49 deletions
+5 -5
View File
@@ -9,14 +9,14 @@
## Prerequisites
- **Module 14: Continuous Integration.** You have a pipeline that runs lint, build, and tests on
every push. Security scanning is *more gates on that same pipeline*, so you need somewhere to bolt
them on.
- **Module 1: the `tasks-app`.** The running example. We'll let the AI bolt a "cloud sync" feature
onto it and watch it introduce all three failure modes at once.
- **Module 2: Version Control as a Safety Net.** Scanners flag findings in a diff; you'll commit,
re-scan, and confirm a gate goes red then green. Secret scanning in particular cares about *history*,
not just the working tree; that only makes sense once you think in commits.
- **Module 1: the `tasks-app`.** The running example. We'll let the AI bolt a "cloud sync" feature
onto it and watch it introduce all three failure modes at once.
- **Module 14: Continuous Integration.** You have a pipeline that runs lint, build, and tests on
every push. Security scanning is *more gates on that same pipeline*, so you need somewhere to bolt
them on.
Helpful but not required: **Module 8 (remotes/hosting)** gives you host-native scanning (Dependabot-style
alerts, push protection) that lives on the remote; **Module 10 (reviewing code you didn't write)** frames