Goal: Stand up a reproducible, standardized repository for your capstone project — with pinned dependencies, a fixed seed, versioned data, a re-runnable pipeline, automated hygiene checks, and a plan (milestones + risk register) for the work ahead. Everything in this lab is free and runs locally — no cloud cost. Steps:
cookiecutter (or the ccds CLI), dvc, pre-commit, ruff, and nbstripout.cookiecutter or the ccds CLI) to generate your capstone repository. Follow the "Using the Template" guide to understand what each generated folder (data/, src/, models/, notebooks/, reports/) is for..gitignore before your first commit. Confirm large data files and any secrets/config files are excluded from the very start — not added after the fact.requirements.txt (or pyproject.toml), and set a single seed constant used everywhere randomness appears in your project (data splitting, initialization, sampling).dvc init, then dvc add on your raw capstone dataset. Confirm DVC creates a small .dvc pointer file that Git tracks, while the actual data moves to DVC's cache/storage.dvc.yaml: prepare → train → evaluate, each with explicit deps and outs. Run dvc repro and confirm it regenerates your results end-to-end from raw data with a single command. Re-run it a second time and confirm DVC skips unchanged stages..pre-commit-config.yaml. Wire up ruff (linting) and nbstripout (notebook output stripping). Run pre-commit install, then make a trivial commit to confirm the hooks actually fire.git tag -a v0.1-baseline -m "reproducible baseline") marking this reproducible starting point.dvc repro — that a stranger could clone the repo and reproduce your results without asking you a single question.RISK_REGISTER.md (or a table in your README), list your top 4–6 capstone risks. For each: likelihood, impact, a concrete trigger condition, and the specific mitigation that trigger launches.Deliverables: A link to (or exported archive of) your capstone Git repository showing the Cookiecutter Data Science layout, .dvc pointer file(s), dvc.yaml pipeline, .pre-commit-config.yaml, the v0.1-baseline tag, and your README; plus your RISK_REGISTER.md and a screenshot or link to your GitHub Projects Roadmap view with milestones and Status field populated.