u/FactorGeneral4078

I built a native PostgreSQL admin tool with Tauri 2 — ~6MB, no Electron, credentials in macOS Keychain
▲ 3 r/tauri

I built a native PostgreSQL admin tool with Tauri 2 — ~6MB, no Electron, credentials in macOS Keychain

Hey r/tauri! I wanted to share **VeloxDB**, a PostgreSQL desktop client I've been building with Tauri 2 and Rust. The whole idea was to build something that actually felt native — no bloat, no cloud middlemen, no Electron tax.

Here's the stack:

- UI → React 19 · TypeScript · Tailwind · shadcn/ui

- Editor → Monaco (VS Code engine) · schema-aware SQL autocomplete

- Diagrams → ReactFlow · Dagre (visual ER diagram builder)

- Desktop → **Tauri 2**

- Backend → Rust · tokio-postgres · deadpool · rustls

- Build → Vite 8 · pnpm

**Things Tauri made really natural to build:**

🔐 Keychain integration— credentials live in macOS Keychain. No plaintext config files ever.

⚡ Local-first IPC — the frontend talks directly to the Rust backend via Tauri's IPC bridge. Zero cloud, zero telemetry.

📦 Tiny footprint — the whole binary is ~6MB. pgAdmin's installer is 500×+ that.

🗂 Visual ER designer— drag-and-drop schema builder powered by ReactFlow. No DDL by hand.

📊 Virtual scrolling — million-row tables stay snappy. Only renders what you see.

🌐 SSH tunneling + SSL — stable pooled connections via deadpool-postgres, rustls for TLS.

The Tauri IPC bridge made it surprisingly easy to wire up a repository pattern — the frontend data layer is abstracted behind a `VeloxDbRepository` interface, so swapping the transport later would be trivial.

Would love any feedback from the Tauri community — especially around window state management, updater best practices, or anyone who's tackled SSH tunneling from the Rust side. Happy to discuss any implementation details!

https://veloxdb.dev

https://github.com/abeni16/veloxdb

u/FactorGeneral4078 — 4 hours ago

Built a free, open-source Postgres desktop client in Rust + Tauri — no cloud, no telemetry, just raw speed

Hey 👋

I've been working on VeloxDB — a desktop GUI for PostgreSQL that's actually fast. I got tired of browser-based clients routing my queries through some startup's servers, so I built something local-first with a Rust backend.

Here's what makes it different:

  • 🦀 Rust backend — connection pooling via deadpool-postgres, no proxy overhead
  • 🖥️ Monaco editor (same engine as VS Code) with real-time SQL linting against your actual schema
  • 📊 Virtual scrolling on result sets — million-row queries don't hang the UI
  • 🗺️ Visual ER diagram — drag tables, connect columns, preview DDL migrations before applying
  • 🔐 SSH tunnel support + credentials in your OS keychain (no plaintext storage)
  • ⌨️ Command palette for everything (Cmd+P / Ctrl+P)

Works on macOS, Linux, and Windows. MIT licensed. Still in beta but usable for day-to-day dev work.

Would love feedback — especially from folks who've hit walls with other clients. What features are

u/FactorGeneral4078 — 1 day ago
▲ 0 r/SQL

Built a free, open-source Postgres desktop client in Rust + Tauri — no cloud, no telemetry, just raw speed

Hey 👋

I've been working on VeloxDB — a desktop GUI for PostgreSQL that's actually fast. I got tired of browser-based clients routing my queries through some startup's servers, so I built something local-first with a Rust backend.

Here's what makes it different:

  • 🦀 Rust backend — connection pooling via deadpool-postgres, no proxy overhead
  • 🖥️ Monaco editor (same engine as VS Code) with real-time SQL linting against your actual schema
  • 📊 Virtual scrolling on result sets — million-row queries don't hang the UI
  • 🗺️ Visual ER diagram — drag tables, connect columns, preview DDL migrations before applying
  • 🔐 SSH tunnel support + credentials in your OS keychain (no plaintext storage)
  • ⌨️ Command palette for everything (Cmd+P / Ctrl+P)

Works on macOS, Linux, and Windows. MIT licensed. Still in beta but usable for day-to-day dev work.

Would love feedback especially from folks who've hit walls with other clients. What features are

u/FactorGeneral4078 — 1 day ago

pgAdmin is 600MB. VeloxDB is 6MB. One of these is not like the other.

My PostgreSQL client was using more RAM than my actual database.

Enter VeloxDB — a Rust-powered Postgres admin tool that starts in under a second, weighs ~6MB, and somehow fits a full visual schema designer inside.

No Electron. No Java. No cloud. No subscriptions. No nonsense.

Just you, your database, and a tool that doesn't make you want to throw your laptop.

veloxdb.dev (macOS + Windows, Linux)

The devs are active on GitHub if you want to contribute or just file your pgAdmin trauma as a bug report.

u/FactorGeneral4078 — 1 day ago
▲ 0 r/github

Is 245 GitHub stars in under a week a good early indicator for an open source project?

I just launched veloxdb — a PostgreSQL management desktop app built with Rust + Tauri + shadcn-ui, basically a developer-focused alternative to tools like TablePlus or DBeaver.

We hit 245 stars within the first week without any major marketing push. I'm trying to gauge whether this is a meaningful signal or just noise.

For context:

  • - 12 forks so far
  • - 4 open issues (people are actually using it)
  • - Active commit history

For those who've launched OSS projects before — at what point did early star count actually correlate with long-term traction? Is there a ratio or benchmark you look at (stars:forks, stars:issues) to tell if interest is genuine vs just people clicking and forgetting?

u/FactorGeneral4078 — 1 day ago

I got tired of database tools that feel bloated, slow, or locked behind subscriptions… so I started building my own.

Introducing VeloxDB — a fast, modern database GUI focused on developers who just want to work with their database without fighting the tool.

⚡ Built for speed
🧩 Clean modern UI
🐘 PostgreSQL first
🔌 More database support coming
🛠 Native desktop app (not another heavy Electron monster)
🔐 No telemetry, no signup, no cloud lock-in
🤖 Bring your own AI key

The goal is simple:

Make a database tool that feels lightweight, developer-first, and actually enjoyable to use.

Most tools today either:

  • feel ancient
  • consume insane RAM
  • push subscriptions
  • or try to become an entire cloud platform

VeloxDB is trying to go the opposite direction.

Still actively building it and shipping features constantly. Would genuinely love feedback from developers here.

Website: veloxdb.dev

u/FactorGeneral4078 — 2 days ago

VeloxDB a fast, open-source database built for developers 220 ⭐ in a week

Hey everyone! I'd like to showcase VeloxDB, a project I've been working on that just hit 220 GitHub stars in its first week 🎉

What is VeloxDB? VeloxDB is a fast, lightweight, open-source database built for developers who value performance and simplicity. No bloat, no unnecessary complexity — just a clean, reliable database that gets out of your way.

Why I built it: I was frustrated with existing solutions that were either too heavy or too limited. I wanted something fast, simple, and truly open — so I built it.

Tech & highlights:

  • ⚡ Built for performance from the ground up
  • 🧹 Minimal and developer-friendly API
  • 🔓 Fully open source — MIT licensed
  • 💬 Active and growing community

Veloxdb.dev

u/FactorGeneral4078 — 2 days ago

I built a free, open-source Postgres desktop client in Rust + Tauri — no cloud, no telemetry, just raw speed. How do I sustain it financially?

Hey everyone,

I recently shipped VeloxDB — a free, open-source PostgreSQL desktop client. Built with Rust + Tauri, no cloud, no telemetry, nothing phoning home. Just a fast native app that connects straight to your database.

Been getting some good traction but now I'm hitting the real wall of OSS maintenance — the bills:

  • Apple Developer account ($99/year just to notarize a macOS app)
  • Domain costs
  • Windows code signing
  • Hosting
  • And just… my time

GitHub Sponsors is set up but honestly not getting much from it yet.

For those of you running free OSS projects — how do you actually keep the lights on? What's worked for you beyond GitHub Sponsors? Open Collective? Ko-fi? Going freemium? Selling a pro version?

I really want to keep VeloxDB free but I also need to cover the basics. Would love to hear what's actually worked for real people, not just the theory.

Repo is here if you're curious 👉 github.com/abeni16/veloxdb

Thanks 🙏

u/FactorGeneral4078 — 3 days ago

I built a free, open-source Postgres desktop client in Rust + Tauri — no cloud, no telemetry, just raw speed. How do I sustain it financially?

Hey everyone,

I recently shipped VeloxDB a free, open-source PostgreSQL desktop client. Built with Rust + Tauri, no cloud, no telemetry, nothing phoning home. Just a fast native app that connects straight to your database.

Been getting some good traction but now I'm hitting the real wall of OSS maintenance — the bills:

  • Apple Developer account ($99/year just to notarize a macOS app)
  • Domain costs
  • Windows code signing
  • Hosting
  • And just… my time

GitHub Sponsors is set up but honestly not getting much from it yet.

For those of you running free OSS projects — how do you actually keep the lights on? What's worked for you beyond GitHub Sponsors? Open Collective? Ko-fi? Going freemium? Selling a pro version?

I really want to keep VeloxDB free but I also need to cover the basics. Would love to hear what's actually worked for real people, not just the theory.

Repo is here if you're curious 👉 github.com/abeni16/veloxdb

Thanks 🙏

u/FactorGeneral4078 — 3 days ago

I built a free, open-source Postgres desktop client in Rust + Tauri — no cloud, no telemetry, just raw speed

I've been working on VeloxDB — a desktop GUI for PostgreSQL that's actually fast. I got tired of browser-based clients routing my queries through some startup's servers, so I built something local-first with a Rust backend.

Here's what makes it different:

  • 🦀 Rust backend — connection pooling via deadpool-postgres, no proxy overhead
  • 🖥️ Monaco editor (same engine as VS Code) with real-time SQL linting against your actual schema
  • 📊 Virtual scrolling on result sets — million-row queries don't hang the UI
  • 🗺️ Visual ER diagram — drag tables, connect columns, preview DDL migrations before applying
  • 🔐 SSH tunnel support + credentials in your OS keychain (no plaintext storage)
  • ⌨️ Command palette for everything (Cmd+P / Ctrl+P)

Works on macOS, Linux, and Windows. MIT licensed. Still in beta but usable for day-to-day dev work.

Would love feedback — especially from folks who've hit walls with other clients. What features are you missing?

https://veloxdb.dev

u/FactorGeneral4078 — 3 days ago

I built a free, open-source Postgres desktop client in Rust + Tauri no cloud, no telemetry, just raw speed

I've been working on VeloxDB — a desktop GUI for PostgreSQL that's actually fast. I got tired of browser-based clients routing my queries through some startup's servers, so I built something local-first with a Rust backend.

Here's what makes it different:

  • 🦀 Rust backend — connection pooling via deadpool-postgres, no proxy overhead
  • 🖥️ Monaco editor (same engine as VS Code) with real-time SQL linting against your actual schema
  • 📊 Virtual scrolling on result sets — million-row queries don't hang the UI
  • 🗺️ Visual ER diagram — drag tables, connect columns, preview DDL migrations before applying
  • 🔐 SSH tunnel support + credentials in your OS keychain (no plaintext storage)
  • ⌨️ Command palette for everything (Cmd+P / Ctrl+P)

Works on macOS, Linux, and Windows. MIT licensed. Still in beta but usable for day-to-day dev work.

Would love feedback — especially from folks who've hit walls with other clients. What features are you missing?
https://veloxdb.dev

https://github.com/abeni16/veloxdb

u/FactorGeneral4078 — 3 days ago
▲ 0 r/vercel

My open-source site is blowing up and Vercel is about to pause it what are you all using instead?

I've been building and maintaining a free, open-source project for a while now no ads, no subscriptions, no monetization of any kind. Just something I built because I thought it could help people, and it turns out... it actually did? 🥹

The traffic has been growing steadily and honestly, I'm really grateful for that. But now I just got an email from Vercel saying I've hit 75% of my 100GB Fast Data Transfer limit — and if I go over, my projects get automatically paused.

I totally understand that Vercel is a business and free tiers have limits. No hate to them at all — their platform is genuinely great and got me this far. But upgrading to Pro right now just isn't realistic for a project that earns $0.

u/FactorGeneral4078 — 3 days ago

I built a free, open-source Postgres desktop client in Rust + Tauri no cloud, no telemetry, just raw speed

I've been working on VeloxDB — a desktop GUI for PostgreSQL that's actually fast. I got tired of browser-based clients routing my queries through some startup's servers, so I built something local-first with a Rust backend.

Here's what makes it different:

🦀 Rust backend — connection pooling via deadpool-postgres, no proxy overhead

🖥️ Monaco editor (same engine as VS Code) with real-time SQL linting against your actual schema

📊 Virtual scrolling on result sets — million-row queries don't hang the UI

🗺️ Visual ER diagram — drag tables, connect columns, preview DDL migrations before applying

🔐 SSH tunnel support + credentials in your OS keychain (no plaintext storage)

⌨️ Command palette for everything (Cmd+P / Ctrl+P)

Works on macOS, Linux, and Windows. MIT licensed. Still in beta but usable for day-to-day dev work.

Would love feedback — especially from folks who've hit walls with other clients. What features are you missing?

https://veloxdb.dev

u/FactorGeneral4078 — 4 days ago

I built a free, open-source Postgres desktop client in Rust + Tauri — no cloud, no telemetry, just raw speed

I've been working on VeloxDB — a desktop GUI for PostgreSQL that's actually fast. I got tired of browser-based clients routing my queries through some startup's servers, so I built something local-first with a Rust backend.

Here's what makes it different:

  • 🦀 Rust backend — connection pooling via deadpool-postgres, no proxy overhead
  • 🖥️ Monaco editor (same engine as VS Code) with real-time SQL linting against your actual schema
  • 📊 Virtual scrolling on result sets — million-row queries don't hang the UI
  • 🗺️ Visual ER diagram — drag tables, connect columns, preview DDL migrations before applying
  • 🔐 SSH tunnel support + credentials in your OS keychain (no plaintext storage)
  • ⌨️ Command palette for everything (Cmd+P / Ctrl+P)

Works on macOS, Linux, and Windows. MIT licensed. Still in beta but usable for day-to-day dev work.

Would love feedback — especially from folks who've hit walls with other clients. What features are you missing?
https://veloxdb.dev

u/FactorGeneral4078 — 4 days ago

Built a free, open-source Postgres desktop client in Rust + Tauri — no cloud, no telemetry, just raw speed

Hey 👋

I've been working on VeloxDB — a desktop GUI for PostgreSQL that's actually fast. I got tired of browser-based clients routing my queries through some startup's servers, so I built something local-first with a Rust backend.

Here's what makes it different:

  • 🦀 Rust backend — connection pooling via deadpool-postgres, no proxy overhead
  • 🖥️ Monaco editor (same engine as VS Code) with real-time SQL linting against your actual schema
  • 📊 Virtual scrolling on result sets — million-row queries don't hang the UI
  • 🗺️ Visual ER diagram — drag tables, connect columns, preview DDL migrations before applying
  • 🔐 SSH tunnel support + credentials in your OS keychain (no plaintext storage)
  • ⌨️ Command palette for everything (Cmd+P / Ctrl+P)

Works on macOS, Linux, and Windows. MIT licensed. Still in beta but usable for day-to-day dev work.

Would love feedback — especially from folks who've hit walls with other clients. What features are

u/FactorGeneral4078 — 4 days ago

TablePlus costs $99. DBeaver feels like it was designed in 2009. So I built a free Postgres client in Rust.

It runs local, stores credentials in your OS keychain, and uses Monaco (the VS Code editor) for SQL. No cloud, no subscription, no query routing through someone else's server.
Still beta. MIT licensed. Curious what features would actually make you switch.

reddit.com
u/FactorGeneral4078 — 4 days ago
▲ 2 r/PublicValidation+1 crossposts

TablePlus costs $99. DBeaver feels like it was designed in 2009. So I built a free Postgres client in Rust.

It runs local, stores credentials in your OS keychain, and uses Monaco (the VS Code editor) for SQL. No cloud, no subscription, no query routing through someone else's server.
Still beta. MIT licensed. Curious what features would actually make you switch.

veloxdb.dev
u/FactorGeneral4078 — 4 days ago

I’m currently doing my pre-enrollment on Universitaly for Master’s at University of Parma 2026/2027.
By mistake I didn’t add my middle name in the personal data section (Step A). I only entered “Abenezer Asefa” instead of the full name as it appears on my passport.
I already:
• Opened a support ticket and marked it Urgente + Critica
• Attached a clear scan of my passport
• Emailed admissions@unipr.it as well
Has anyone faced the exact same middle-name issue this year (or in previous years)?
How long did it take for Universitaly support to correct the name?
I’m a bit stressed because I don’t want to submit until it’s fixed. Any experiences or tips while waiting would be really helpful!
Thanks in advance! 🙏

reddit.com
u/FactorGeneral4078 — 10 days ago

Hey everyone,

I’ve been working on VeloxDB, a free and fully open-source PostgreSQL client built for developers who want something fast, lightweight, and not overloaded.

It lets you inspect tables, run queries, and manage your PostgreSQL databases, but the main feature is the visual database designer. The goal is to make it easier to understand, plan, and work with your database structure visually.

A few things about it:

  • - No Electron
  • - Lightweight and fast to open
  • - Fully open source
  • - Built for PostgreSQL
  • - Currently available for Mac only
  • - Windows and Linux support coming soon

I’d really appreciate feedback from the PostgreSQL community.

You can check it out here:

https://veloxdb.dev

u/FactorGeneral4078 — 10 days ago