惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
博客园 - 【当耐特】
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
大猫的无限游戏
大猫的无限游戏
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
Y
Y Combinator Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
B
Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I turned the psql commands I keep forgetting into buttons
ひとし 田畑 · 2026-06-15 · via DEV Community
Cover image for I turned the psql commands I keep forgetting into buttons

ひとし 田畑

You know the command exists. You've run it a dozen times. But every single time you need to see what's actually running on your database, you end up typing some variant of:

SELECT pid, state, query, wait_event_type
FROM pg_stat_activity
WHERE state != 'idle' AND pid != pg_backend_pid();

…and then googling pg_stat_activity columns halfway through because you forgot whether it's wait_event or wait_event_type.

I got tired of that. So I built cli2ui — a small web UI that turns the database CLI commands you keep half-remembering into buttons.

psql -c "SELECT * FROM pg_stat_activity"   →  one "running queries" button
pg_dump -t users mydb                       →  one "back up this table" button
SELECT pg_terminate_backend(pid)            →  one "kill this process" button

No AI. No SaaS. No magic. It runs on your machine, right next to your database, and your connection credentials never leave your network.

What it actually does

It's built for app developers and solo developers — not DBAs. The pitch is "you're looking at your tables 3 minutes after deciding to": docker compose up, connect, done. No install marathon, no connection-wizard maze, no digging through nested trees.

A few of the things it puts one click away (PostgreSQL today):

  • Browse tables with estimated row counts, column definitions (\d table), and a row preview.
  • A SQL runner that's read-only by default — it opens the statement in a SET TRANSACTION READ ONLY transaction (so the server refuses writes), with a statement_timeout and a 1000-row cap. Write mode is opt-in and takes a whole-database safety snapshot before it commits.
  • EXPLAIN snapshots + diff — save two plans and diff them (before/after an index) instead of pasting plans into a scratch file.
  • A what-if index lab — try a hypothetical index inside a transaction that's always rolled back, and see the before/after plan and timing. Nothing is committed.
  • A scale simulation — EXPLAIN your query at 1×, 100×, and 10000× the real row counts to see where the plan shape breaks as data grows.
  • Activity / Lockspg_stat_activity and the blocking tree from pg_locks + pg_blocking_pids, with one-click cancel / kill.
  • Health — largest tables, unused indexes, dead rows, and a stats-only bloat estimate (no scan).
  • Replication — a readiness check (wal_level / max_wal_senders), connected standbys, slot create/drop, and a copy-paste standby-setup recipe with your host/port/user already filled into the pg_basebackup command.
  • postgresql.conf editor — read/edit via pg_settings + ALTER SYSTEM SET + pg_reload_conf(), with reload-vs-restart badges.
  • Backup / restore — automatic pg_dump snapshots before every destructive change, restore of an uploaded dump streamed to the client tool (not buffered in memory).

The UI ships in English and Japanese with a header toggle.

The design decisions that made it simple

Local-only, on purpose

cli2ui has no authentication layer. That sounds reckless until you look at the threat model: it's a trusted local tool sitting next to your database, not a multi-tenant service on the internet. No accounts, no outbound calls, no AI. Your DB credentials stay on your machine.

The moment you'd hold someone's database connection info on a server, the liability-and-encryption story swallows the whole project. Staying local keeps it honest — and the README is very loud about "don't expose this to an untrusted network."

Destructive stuff is taken seriously anyway

Being local doesn't mean being careless:

  • Schema / table / column names are bound with psycopg2.sql.Identifier; the few raw-SQL spots (e.g. index access method, column type) go through fixed allow-lists.
  • The SQL runner enforces read-only at the server, not by scanning your SQL for the word "DELETE."
  • The what-if features run with autocommit=False and always ROLLBACK.
  • Every drop / truncate / rename / write takes an automatic snapshot first, and those snapshots are capped by total size so the local SQLite store can't grow forever.
  • CSRF is on (so a random webpage can't fire a cross-origin POST at localhost and drop your database), and X-Frame-Options: DENY stops clickjacking the destructive buttons.

Boring stack, fast to build

  • Django + htmx + a sprinkle of Alpine.js. No SPA, no build step, no node_modules. Panels are htmx partials; the page swaps innerHTML and that's the whole interaction model.
  • SQLite for the management DB (saved connections, command history, snapshots) — it's a single-user local tool, so that's plenty.
  • One engine interface hides the database dialect, so each panel is a self-contained "1 engine method + 1 view + 1 template + a nav button."

That last bit is the thing I'm happiest about: adding a feature is small and mechanical, which is why the PostgreSQL coverage got deep instead of wide.

Try it

git clone https://github.com/MR-TABATA/cli2ui
cd cli2ui
docker compose up
# then open http://localhost:8000

The connection form is pre-filled to point at a bundled sample database — hit Connect and you're looking at its tables. To point at your own PostgreSQL, change the form fields. (Connecting to a database in another container trips everyone up — there's a whole networking guide for that.)

What it's not doing (on purpose)

  • Not multi-user, not a hosted service. Local-only is the whole point.
  • No MySQL yet. The engine layer is ready for it; PostgreSQL just came first.
  • Not a replacement for a real DBA toolkit — it's the "3 minutes after deciding to" tool.

It's MIT-licensed and the code is on GitHub. The landing page is at cli2ui.com.

If you've ever rage-googled pg_stat_replication columns, I'd love your feedback — especially on what command you reach for most that should be a button.