Suplex — local desktop app, yours forever. Mine leads. Write AI emails. Send. Get Suplex™ Now.

TECHNICAL ARCHITECTURE

YOUR DATA
NEVER LEAVES
YOUR MACHINE

No clouds. No servers. No "syncing." Just your data, on your computer, under your control. Here's exactly how we make that happen.

SQLite Local Storage Zero-Knowledge Open Format
suplex.db — Your Local Database
CREATE TABLE leads (
  id INTEGER PRIMARY KEY,
  name TEXT NOT NULL,
  email TEXT UNIQUE,
  company TEXT,
  value DECIMAL,
  created_at TIMESTAMP
);

-- Your data. Your schema. Your control.
-- We can't see it. We can't sell it.
-- We can't even touch it.
LOCALLY HOSTED

THE LOCAL-FIRST DIFFERENCE

See why our architecture makes SaaS look like a bad joke

TYPICAL SAAS

💻

Your Browser

Just a thin client

☁️

THEIR Servers

They control everything

🗄️

THEIR Database

Your data, their control

THE PROBLEM:

  • • They can access your data
  • • They can sell your data
  • • They can lose your data
  • • They can hold it hostage

SUPLEX

💻

Your App

Full-featured desktop app

🗄️

YOUR Database

SQLite file on YOUR machine

💾

YOUR Hard Drive

~/Documents/suplex.db

THE DIFFERENCE:

  • • We cannot access your data
  • • We cannot sell your data
  • • We cannot lose your data
  • • We cannot hold it hostage

UNDER THE HOOD

The technologies that make data ownership possible

SQL

SQLite

The world's most deployed database

SQLite is a self-contained, serverless, zero-configuration database engine. Your entire database is a single file on your computer—portable, standard, and completely under your control.

Single File Zero Config ACID Compliant Open Source

Local-First

No servers, no sync, no problem

Traditional SaaS: Your app is just a window into THEIR database. Local-first: Your app IS the database. Every click, every query, every save happens on YOUR machine. No latency. No downtime. No dependency.

# Your database location

~/Documents/Suplex/suplex.db

# Back it up however you want

cp suplex.db suplex-backup-$(date +%Y%m%d).db

Open Formats

No vendor lock-in, ever

Your data isn't trapped in a proprietary format. It's standard SQLite—readable by thousands of tools. Want to switch to something else? Your data comes with you, no conversion needed.

.db

SQLite

.csv

Export

.json

API Ready

BUT WAIT — HOW?

Answering the questions you're probably asking

Q: What if my computer crashes?

A: Your database is just a file. Back it up to Dropbox, iCloud, Google Drive, an external drive—anywhere. Unlike SaaS "backups" that you can't actually access, YOUR backup is YOURS.

Q: What about multiple devices?

A: Put your database in a synced folder (Dropbox, iCloud, etc.). Same file, multiple devices. Or use our optional peer-to-peer sync—your data still never touches our servers.

Q: Can I access it from anywhere?

A: Your choice. Keep it on one machine. Sync it everywhere. Access via VPN to your home computer. With SaaS, you have no choice. With Suplex, YOU decide.

Q: What if Suplex shuts down?

A: You keep using the app. Your database doesn't expire. Even without updates, your data remains fully accessible. Try doing that with a SaaS that shuts down.

YOUR DATA. YOUR CODE.

Query your own database with standard SQL

-- Your data is just a SQLite database
-- Query it with any tool: Python, R, Excel, Tableau...

SELECT 
    company,
    SUM(deal_value) as total_pipeline,
    COUNT(*) as lead_count
FROM leads
WHERE created_at >= '2024-01-01'
GROUP BY company
ORDER BY total_pipeline DESC;

-- No API limits. No "contact sales." Just YOUR data.

READY TO OWN YOUR
ARCHITECTURE?

Join the local-first revolution. Your data belongs on your machine—not in someone else's cloud.

macOS • Windows • Linux