<?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: Michael Hightower</title>
    <description>The latest articles on DEV Community by Michael Hightower (@mhightower932).</description>
    <link>https://dev.to/mhightower932</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3879143%2F2a912f66-8b6f-4957-a5af-959bb1400bdc.png</url>
      <title>DEV Community: Michael Hightower</title>
      <link>https://dev.to/mhightower932</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mhightower932"/>
    <language>en</language>
    <item>
      <title>I built an open-source WMS because every warehouse management system costs $2,000/month</title>
      <dc:creator>Michael Hightower</dc:creator>
      <pubDate>Tue, 14 Apr 2026 18:32:41 +0000</pubDate>
      <link>https://dev.to/mhightower932/i-built-an-open-source-wms-because-every-warehouse-management-system-costs-2000month-5nc</link>
      <guid>https://dev.to/mhightower932/i-built-an-open-source-wms-because-every-warehouse-management-system-costs-2000month-5nc</guid>
      <description>&lt;p&gt;Every WMS on the market is either a six-figure enterprise implementation, a $500-3,000/month SaaS with workflows you can't change, or an ERP bolt-on that was never designed for a warehouse floor. There has never been a credible open-source alternative built for e-commerce fulfillment. Today that changes.&lt;/p&gt;

&lt;p&gt;I'm a warehouse manager at an e-commerce company. 8,000 orders/month, 5 scanning stations, and I function as the entire technology department. I needed a WMS that didn't force my team into someone else's workflow. Nothing existed that fit, so I built one.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Sentry WMS does
&lt;/h2&gt;

&lt;p&gt;Full warehouse lifecycle, all scan-driven:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Receiving&lt;/strong&gt; : scan PO, scan items, track quantity, complete&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Put-Away&lt;/strong&gt; : scrollable list, scan any item in any order, scan destination bin&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pick Walk&lt;/strong&gt; : item counter, next preview, optimized path&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pack Verification&lt;/strong&gt; : scan SO, scan items to verify, confirmed rows&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Shipping&lt;/strong&gt; : carrier picker, tracking entry, completion&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cycle Count&lt;/strong&gt; : blind/non-blind, pending records, admin per-bin approve/reject&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bin-to-Bin Transfer&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Admin Panel&lt;/strong&gt; : inventory, items, POs, SOs, users, warehouses, settings, import, audit log&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjfxzykzy4iiprc4o5j39.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjfxzykzy4iiprc4o5j39.png" alt=" " width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Python/Flask API with parameterized SQL and service layer&lt;/li&gt;
&lt;li&gt;React 18 + Vite admin panel&lt;/li&gt;
&lt;li&gt;React Native (Expo) mobile app with broadcast intent scanner support&lt;/li&gt;
&lt;li&gt;PostgreSQL 16&lt;/li&gt;
&lt;li&gt;Docker Compose (one command to run the entire stack)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Security
&lt;/h2&gt;

&lt;p&gt;I ran two independent security audits using Claude Opus and Sonnet in separate sessions. Opus identified vulnerabilities that were low-risk independently but dangerous once chained together. 18 vulnerabilities found and fixed total.&lt;/p&gt;

&lt;p&gt;Parameterized SQL on every query, warehouse authorization middleware on all endpoints, random admin password on first run, live DB validation on every authenticated request, login lockout, non-root container with gunicorn, security headers, and CORS restricted to configured origins.&lt;/p&gt;

&lt;h2&gt;
  
  
  Hardware testing
&lt;/h2&gt;

&lt;p&gt;This wasn't built in a browser. I test on a Chainway C6000 industrial barcode scanner running Android 10. The mobile app uses broadcast intents (com.chainway.sdk.barcode.BARCODE_DECODING_DATA), not keyboard wedge, not camera scan. Real warehouse hardware.&lt;/p&gt;

&lt;p&gt;The standalone APK is attached to the GitHub release.&lt;/p&gt;

&lt;h2&gt;
  
  
  Get running in one command
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/hightower-systems/sentry-wms.git
&lt;span class="nb"&gt;cd &lt;/span&gt;sentry-wms
docker compose up &lt;span class="nt"&gt;-d&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Admin panel at &lt;code&gt;http://localhost:3000&lt;/code&gt;. Admin password is randomly generated on first run, check &lt;code&gt;docker compose logs&lt;/code&gt; for credentials. Demo data included so you can explore immediately.&lt;/p&gt;

&lt;p&gt;For production (no demo data):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;SKIP_SEED&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="nb"&gt;true &lt;/span&gt;docker compose up &lt;span class="nt"&gt;-d&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;v1.1:&lt;/strong&gt; Input validation schemas, Redis rate limiting, error boundaries, MkDocs documentation site&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;v2.0:&lt;/strong&gt; ERP connector framework; NetSuite, Shopify, BigCommerce&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sentry Cloud:&lt;/strong&gt; Hosted SaaS for teams that don't want to self-host&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sentry is the warehouse execution layer. Your ERP stays the system of record.&lt;/p&gt;

&lt;h2&gt;
  
  
  Numbers
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;288 automated tests passing in ~28 seconds&lt;/li&gt;
&lt;li&gt;4,000+ lines of Python&lt;/li&gt;
&lt;li&gt;Two full security audits&lt;/li&gt;
&lt;li&gt;MIT licensed&lt;/li&gt;
&lt;li&gt;Free forever&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/hightower-systems/sentry-wms" rel="noopener noreferrer"&gt;https://github.com/hightower-systems/sentry-wms&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Demo videos:&lt;/strong&gt; &lt;a href="https://github.com/hightower-systems/sentry-wms/releases/tag/v1.0.0" rel="noopener noreferrer"&gt;v1.0.0 Release Page&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you run a warehouse, manage inventory, or just want to poke at the code, I'd love feedback. Star it, fork it, break it.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>python</category>
      <category>docker</category>
      <category>react</category>
    </item>
  </channel>
</rss>
