| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
atlas.sql is a lightweight, keyboard-centric terminal user interface (TUI) for interacting with SQL databases. Part of the Atlas Suite, it provides a streamlined experience for running queries, visualizing results, and managing data directly in your terminal.
git clone https://github.com/fezcode/atlas.sql
cd atlas.sql
go build -o atlas.sql .Run the tool by providing a connection string:
./atlas.sql sqlite://path/to/db.sqlite./atlas.sql "postgres://user:password@localhost:5432/dbname?sslmode=disable"| Key | Action |
|---|---|
| Enter | Execute SQL query |
| Tab | Switch focus between Input and Table |
| ↑ / ↓ | Navigate result rows |
| ← / → | Scroll table columns horizontally |
| + / - | Increase / Decrease column width |
| v | Toggle Detail View for selected row |
| c | Copy entire result set as CSV to clipboard |
| h | Toggle the interactive Help & SQL Tutorial |
| Ctrl+T | Quick-list all tables in the database |
| Ctrl+S | Quick-list all schemas/attached databases |
| Esc | Clear Input / Exit focus / Close menus |
| q / Ctrl+C | Quit |
The project uses gobake to generate binaries for all platforms:
gobake buildBinaries will be placed in the build/ directory.
MIT License - see LICENSE for details.
| Back | FazBrowse Home | New Git URL |