<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Praire-Roots</title>
    <description>The latest articles on DEV Community by Praire-Roots (@alexjvv52ops).</description>
    <link>https://dev.to/alexjvv52ops</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4132186%2F79a1ab4c-2d80-43c7-8e4d-2680ed243036.jpg</url>
      <title>DEV Community: Praire-Roots</title>
      <link>https://dev.to/alexjvv52ops</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/alexjvv52ops"/>
    <language>en</language>
    <item>
      <title>Free offline microgreens farm ledger for Windows: I replaced a spreadsheet with a local-first Tauri + Rust app</title>
      <dc:creator>Praire-Roots</dc:creator>
      <pubDate>Fri, 18 Sep 2026 23:17:32 +0000</pubDate>
      <link>https://dev.to/alexjvv52ops/free-offline-microgreens-farm-ledger-for-windows-i-replaced-a-spreadsheet-with-a-local-first-tauri-2oaf</link>
      <guid>https://dev.to/alexjvv52ops/free-offline-microgreens-farm-ledger-for-windows-i-replaced-a-spreadsheet-with-a-local-first-tauri-2oaf</guid>
      <description>&lt;p&gt;A spreadsheet let me overwrite a harvest cell. The total still looked fine. That tray was already promised.&lt;/p&gt;

&lt;p&gt;I needed a free offline farm ledger for Windows: standing orders, trays by the ounce, and books that do not live in a $30/month cloud farm app. No account. No subscription. File stays on the PC.&lt;/p&gt;

&lt;p&gt;That is Groundtruth 0.1.3. Apache-2.0. I run my own microgreens farm on it.&lt;/p&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/alexjvv52-ops/groundtruth-app" rel="noopener noreferrer"&gt;https://github.com/alexjvv52-ops/groundtruth-app&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The job: standing order tracker + honest books
&lt;/h2&gt;

&lt;p&gt;Small growers sow trays, harvest by weight, and sell to kitchens or a market. The failure mode is not seed. It is promising the same tray twice, then finding out when the sheet and the WhatsApp thread disagree.&lt;/p&gt;

&lt;p&gt;Groundtruth is a local-first desktop app for that loop.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Today: move to light, harvest, sow the shortfall&lt;/li&gt;
&lt;li&gt;Standing orders next to what is actually on the rack (promised vs sown)&lt;/li&gt;
&lt;li&gt;Money in / money out — unpaid stays unpaid&lt;/li&gt;
&lt;li&gt;Farm currency in Settings; bills and Payment Links use that currency&lt;/li&gt;
&lt;li&gt;Export the database, event log, receipts, and CSVs and leave&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Not a phone CRM. Not farmOS. Not QuickBooks.&lt;/p&gt;

&lt;h2&gt;
  
  
  Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;React + Vite UI&lt;/li&gt;
&lt;li&gt;Tauri commands into a Rust farm core&lt;/li&gt;
&lt;li&gt;SQLite on disk&lt;/li&gt;
&lt;li&gt;Append-only event log beside the database&lt;/li&gt;
&lt;li&gt;&lt;code&gt;%APPDATA%\com.prairieroots.groundtruth&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Constraints that are code, not slogans
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Unpaid stays unpaid.&lt;/strong&gt; No silent mark-paid with no trail. Corrections and voids are new events.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tray cost is computed when you look.&lt;/strong&gt; Not a cached cell. Missing rows → it refuses to invent a number.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Health is not stored.&lt;/strong&gt; A scan replays the event log against the database. Status is not a mood from yesterday.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Marketing cannot carry dollars.&lt;/strong&gt; Samples and follow-ups stay money-free so a pipeline cannot pretend it is revenue.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;One operator, one machine.&lt;/strong&gt; No logins. Export everything. Stripe keys never ride along.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Restore checks a stamp.&lt;/strong&gt; Bad bundles are rejected. Farms do not merge.&lt;/p&gt;

&lt;p&gt;Those rules live in &lt;code&gt;src-tauri&lt;/code&gt; (&lt;code&gt;db.rs&lt;/code&gt;, &lt;code&gt;events.rs&lt;/code&gt;, &lt;code&gt;import.rs&lt;/code&gt;, &lt;code&gt;export.rs&lt;/code&gt;) and &lt;code&gt;docs/GT-D-SERIES.md&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Offline farm books, no subscription
&lt;/h2&gt;

&lt;p&gt;Cloud farm software does real work: calendars, pack lists, a phone. It also keeps the ledger on a server you do not own and bills you whether the week sold.&lt;/p&gt;

&lt;p&gt;This build is the opposite bet: Windows x64, unsigned installer, early 0.1.x, dead-laptop recovery documented and not magic. If you want the notebook gone tonight, do not.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this is on DEV
&lt;/h2&gt;

&lt;p&gt;Local-first is easy to print on a landing page. It is harder when a cook is waiting on a tray count.&lt;/p&gt;

&lt;p&gt;If you build desktop tools that have to survive a bad cell in a sheet, steal the event log + computed-health pattern. The microgreens skin is just the job I had.&lt;/p&gt;

&lt;p&gt;Issues and PRs on the repo.&lt;/p&gt;

</description>
      <category>rust</category>
      <category>tauri</category>
      <category>opensource</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
