Ch01A — Startup
Running case (Jan 2026): Harborview Bike Repair
You’re the bookkeeper for a tiny one-person service business that’s just opened its doors. The goal of Ch01–Ch04 is to walk the business through a complete accounting cycle for its first month.
In this chapter we start with a micro-dataset (only four transactions) so you can learn the LedgerLoom workflow without juggling a big chart of accounts.
The four Ch01 transactions are:
T1 (Jan 2): Owner invests $10,000 cash to start the business.
T2 (Jan 5): First cash customer pays $500 for service.
T3 (Jan 6): Buy $200 of consumable supplies (expensed immediately in Ch01).
T4 (Jan 20): Owner draw of $100 for personal use.
In Chapter 2 we expand the same business into a fuller month (supplies as an asset, equipment, A/R, A/P, rent) so the trial balance becomes “real.”
What you’ll learn
Install LedgerLoom from PyPI (student workflow)
Create a workbook project with
ledgerloom init --profile workbookUnderstand where outputs go (
outputs/checkvsoutputs/<run_id>)Run the end-to-end workflow: inputs → check → build → artifacts
Key accounting terms
These terms show up in every chapter:
Transaction: a business event you record (sale, purchase, payment, owner investment).
Account: a “bucket” for a type of value (Cash, Supplies Expense, Owner Capital).
Chart of Accounts (CoA): the full list of accounts you’re allowed to use. LedgerLoom uses colon-separated names like
Assets:CashandRevenue:ServiceRevenue.Journal entry: a group of two or more lines that share an
entry_id. The total debits must equal the total credits for thatentry_id.Debit / credit: the two sides of an entry. They are not “good” or “bad”. Most courses teach normal balances:
Assets, Expenses, and Dividends usually increase with debits.
Liabilities, Equity, and Revenue usually increase with credits.
Trial balance: a list of ending balances by account. If every entry is balanced, total debits = total credits, but you can still be “wrong” (wrong account, wrong timing).
What to do in your spreadsheet
Open the Workbook template (or your course sheet).
Enter the “Startup” transactions for the period.
(Optional) compute one simple adjustment (e.g., supplies used).
Export CSVs
Export these CSVs from your spreadsheet tabs:
inputs/<period>/transactions.csv(journal lines)inputs/<period>/adjustments.csv(end-of-period adjustments)
The exact column headers matter. If you’re unsure, use:
Run LedgerLoom
Create a new workbook project (once):
ledgerloom init --profile workbook my_books
cd my_books
Then verify and build:
ledgerloom check --project .
ledgerloom build --project . --run-id ch01
Where outputs go
ledgerloom check(by itself) writes tooutputs/check/<period>/ledgerloom build --run-id ch01writes tooutputs/ch01/and includes:outputs/ch01/check/(the check report for this run)outputs/ch01/trust/(manifest + run metadata)outputs/ch01/artifacts/(the canonical CSV outputs you will compare)
What to look at
Start with these artifacts:
entries.csv(normalized entries LedgerLoom ingested)trial_balance_unadjusted.csv(transactions only)trial_balance_adjusted.csv(transactions + adjustments)closing_entries.csvandtrial_balance_post_close.csv(end-of-cycle)
For a plain-English guide to each artifact, see Workbook Artifacts Reference.
Compare against the answer key
Every workbook chapter has a canonical dataset under examples/workbook/<chapter_slug>/.
If you want a known-good reference:
see Optional: Check Your Work Packs (Ch01–Ch04) (completed spreadsheet + reference outputs zips)
Common mistakes
Wrong CSV headers (extra spaces, renamed columns)
Debits/credits not balanced within an
entry_idAccounts that don’t match the chart of accounts (typos / wrong root)
Confusing
outputs/check(standalone check) withoutputs/<run_id>(build run)
Downloads
Next chapter
Continue to Ch01B — Accounting equation + transactions.