Skip to content

🐸 a database management tui for postgres

License

Notifications You must be signed in to change notification settings

kyruzic/rainfrog

Β 
Β 

Repository files navigation

🐸 rainfrog

a database management tui for postgres

rainfrog demo

Warning

rainfrog is currently in alpha.

the goal for rainfrog is to provide a lightweight, terminal-based alternative to pgadmin/dbeaver.

features

  • efficient navigation via vim-like keybindings and mouse controls
  • query editor with keyword highlighting and session history
  • quickly copy data, filter tables, and switch between schemas
  • shortcuts to view table metadata and properties
  • cross-platform (macOS, linux, windows, android via termux)

why "rainfrog"?

frogs find refuge in elephant tracks

disclaimer

this software is currently under active development; expect breaking changes, and use at your own risk. it is not recommended to use this tool with write access on a production database.

installation

cargo

after installing rust (recommended to do so via rustup):

cargo install rainfrog

aur

arch linux users can install from the AUR with an AUR helper:

paru -S rainfrog

termux

if you are using termux, you'll need to install rust via their package manager:

pkg install rust

and then make sure to install with termux features (and disable default features):

cargo install rainfrog --features termux --no-default-features

binaries

  1. download the appropriate binary for your os from the latest release
  2. move the binary to a folder in your PATH environment variable

usage

Note

connection_url must include your credentials for accessing the database (ex. postgres://username:password@localhost:5432/postgres)

rainfrog --url $(connection_url)

keybindings

general

keybinding description
Ctrl+c quit program
Alt+1, Ctrl+n change focus to menu
Alt+2, Ctrl+b change focus to query editor
Alt+3, Ctrl+h change focus to query history
Alt+4, Ctrl+g change focus to results
Tab cycle focus forwards
Shift+Tab cycle focus backwards
q abort current query

menu (list of schemas and tables)

keybinding description
j, ↓ move selection down by 1
k, ↑ move selection up by 1
g jump to top of current list
G jump to bottom of current list
h, ← focus on schemas (if more than 1)
l, β†’ focus on tables
/ filter tables
Esc clear search
Backspace focus on tables
Enter when searching focus on tables
Enter with selected schema focus on tables
Enter with selected table preview table (100 rows)
R reload schemas and tables

query editor

keybindings may not behave exactly like vim. the full list of active vim keybindings in rainfrog can be found at vim.rs.

keybinding description
Alt+Enter, F5 execute query
j, ↓ move cursor down 1 line
k, ↑ move cursor up 1 line
h, ← move cursor left 1 char
l, β†’ move cursor right 1 char
w move cursor to next start of word
e move cursor to next end of word
b move cursor to prev start of word
0 move cursor to beginning of line
$ move cursor to end of line
gg jump to top of editor
G jump to bottom of current list
Esc return to normal mode
i enter insert (edit) mode
I enter insert mode at beginning of line
A enter insert mode at end of line
o insert new line below and insert
v enter visual (select) mode
V enter visual mode and select line
r begin replace operation
y begin yank (copy) operation
x begin cut operation
p paste from clipboard
u undo
Ctrl+r redo
Ctrl+e scroll down
Ctrl+y scroll up

query history

keybinding description
j, ↓ move selection down by 1
k, ↑ move selection up by 1
g jump to top of list
G jump to bottom of list
y copy selected query
I edit selected query in editor
D delete all history

results

keybinding description
j, ↓ scroll down by 1 row
k, ↑ scroll up by 1 row
h, ← scroll left by 1 cell
l, β†’ scroll right by 1 cell
b scroll right by 1 cell
e, w scroll left by 1 column
g jump to top of table
G jump to bottom of table
0 jump to first column
$ jump to last column
v select individual field
V select row
Enter change selection mode inwards
Backspace change selection mode outwards
y copy selection
Esc stop selecting

roadmap

v0.1.0 (alpha)
  • scrollable table
  • cancellable async querying (spawn tokio task)
  • menu list with tables and schemas (collapsable)
  • tui-textarea for query editor
  • basic tui-textarea vim keybindings
  • handle custom types / enums
  • display rows affected
  • confirm before delete/drop
  • table selection and yanking
  • multi-line pasting
  • editor os clipboard support
  • handle mouse events
  • keybindings hints at bottom
  • branch protection
v0.2.0 (beta)
  • vhs explainer gifs
  • upgrade ratatui and tui-textarea
  • shortcuts to view indexes, keys, etc.
  • performant syntax highlighting
  • session history
  • handle explain / analyze output
  • unit / e2e tests
  • changelog, release workflow
  • homebrew / cargo-dist
  • loading animation
backburner
  • non-vim editor keybindings
  • change cursor insert-mode style (not sure it's possible with tui-textarea)
  • editor auto-complete
  • live graphs / metrics (a la pgadmin)
  • more packaging
  • customization (keybindings, colors)
  • better vim multi-line selection emulation
  • handle more mouse events
  • support mysql, sqlite, other sqlx adaptors
  • vhs in cd

known issues and limitations

  • for query results with many columns, the height of the rendered Table widget may be limited, as the maximum area of the underlying buffer is u16::MAX (65,535). Could be fixed by ratatui/ratatui#1250
  • on mac, for VS Code and terminal (and perhaps other editors), a setting for "use option as meta key" needs to be turned on for Alt/Opt keybindings to work. (In VS Code, it's "terminal.integrated.macOptionIsMeta": true; in kitty, it's macos_option_as_alt yes in the config.)
  • in visual mode, when selecting an entire line, the behavior is not the same as vim's, as it simply moves starts the selection at the head of the line, so moving up or down in lines will break the selection.
  • mouse events are only used for changing focus and scrolling; the editor does not currently support mouse events, and menu items cannot be selected using the mouse

acknowledgements

About

🐸 a database management tui for postgres

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 99.5%
  • Other 0.5%