
Local Centralized Database Manager
I Built a Local Database Portal to Manage Multiple Databases in One Place Managing multiple local databases is still more painful than it should be. https://github.com/SamuelChanHin/database-manager Switching between terminal commands, tools, and scripts for backup, restore, and migration takes time — especially when you’re handling different database engines in one project. So I built a local database portal that runs with Docker Compose and gives a single interface for common database operations. How to run it? To run the portal locally, you only need Docker, just execute docker compose up -d , then open http://localhost:3000 . What problem does it solve? If you work on multiple services or environments, you probably need to: check whether a DB connection is healthy make backups before risky changes restore quickly when something breaks migrate data between databases Most of us do this manually with different commands each time. This project turns those tasks into one consistent work
Continue reading on Dev.to
Opens in a new tab


