Ch01A — Startup ================= .. admonition:: 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 workbook`` - Understand where outputs go (``outputs/check`` vs ``outputs/``) - 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:Cash`` and ``Revenue:ServiceRevenue``. - **Journal entry:** a group of two or more lines that share an ``entry_id``. The total debits must equal the total credits for that ``entry_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 ------------------------------ 1) Open the Workbook template (or your course sheet). 2) Enter the “Startup” transactions for the period. 3) (Optional) compute one simple adjustment (e.g., supplies used). Export CSVs ----------- Export these CSVs from your spreadsheet tabs: - ``inputs//transactions.csv`` (journal lines) - ``inputs//adjustments.csv`` (end-of-period adjustments) The exact column headers matter. If you’re unsure, use: - :download:`Workbook template (XLSX) <../_static/ledgerloom_workbook_template.xlsx>` - :download:`Template CSV headers (XLSX) <../_static/ledgerloom_workbook_template_csv_headers.xlsx>` Run LedgerLoom -------------- Create a new workbook project (once): .. code-block:: bash ledgerloom init --profile workbook my_books cd my_books Then verify and build: .. code-block:: bash ledgerloom check --project . ledgerloom build --project . --run-id ch01 Where outputs go ---------------- - ``ledgerloom check`` (by itself) writes to ``outputs/check//`` - ``ledgerloom build --run-id ch01`` writes to ``outputs/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.csv`` and ``trial_balance_post_close.csv`` (end-of-cycle) For a plain-English guide to each artifact, see :doc:`workbook_artifacts_reference`. Compare against the answer key ------------------------------ Every workbook chapter has a canonical dataset under ``examples/workbook//``. If you want a known-good reference: - see :doc:`workbook_check_your_work_pack` (completed spreadsheet + reference outputs zips) Common mistakes --------------- - Wrong CSV headers (extra spaces, renamed columns) - Debits/credits not balanced within an ``entry_id`` - Accounts that don’t match the chart of accounts (typos / wrong root) - Confusing ``outputs/check`` (standalone check) with ``outputs/`` (build run) Downloads --------- - :download:`Completed Ch01 spreadsheet (XLSX) <../_static/ledgerloom_workbook_completed_ch01_startup.xlsx>` - :download:`Reference outputs pack (ZIP) <../_static/ledgerloom_workbook_reference_outputs_ch01_startup.zip>` Next chapter ------------ Continue to :doc:`ch01_equation_transaction`.