Home

Awesome

🐸 rainfrog

a database management tui for postgres

rainfrog demo

[!WARNING] rainfrog is currently in beta; the mysql and sqlite drivers are unstable.

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

features

why "rainfrog"?

frogs find refuge in elephant tracks

supported databases

rainfrog has mainly been tested with postgres, and postgres will be the primary database targeted. mysql and sqlite are also supported, but they are currently unstable; use with caution, and check out the known issues section for things to look out for!

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

arch linux

arch linux users can install from the official repositories using pacman:

pacman -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

nix

nix-env -iA nixos.rainfrog

install script

there is a simple install script that assists in downloading and unpacking a binary from the release page to ~/.local/bin/, which you might want to add to your PATH variable if it isn't already there. you'll need to select which binary is appropriate for your system (if you're not sure, you can find out by installing rust and running rustc -vV to see the "host" target), and the script also needs jq and fzf installed to run.

curl -LSsf https://raw.githubusercontent.com/achristmascarl/rainfrog/main/install.sh | bash

release page binaries

  1. manually download and unpack the appropriate binary for your os from the latest release (if you're not sure which binary to pick, you can find out by installing rust and running rustc -vV to see the "host" target)
  2. move the binary to a folder in your PATH environment variable

usage

Usage: rainfrog [OPTIONS]

Options:
  -M, --mouse <MOUSE_MODE>   Whether to enable mouse event support. If enabled, the default mouse event handling for your terminal
                             will not work. [possible values: true, false]
  -u, --url <URL>            Full connection URL for the database, e.g. postgres://username:password@localhost:5432/dbname
      --username <USERNAME>  Username for database connection
      --password <PASSWORD>  Password for database connection
      --host <HOST>          Host for database connection (ex. localhost)
      --port <PORT>          Port for database connection (ex. 5432)
      --database <DATABASE>  Name of database for connection (ex. postgres)
      --driver <DRIVER>      Driver for database connection (ex. postgres)
  -h, --help                 Print help
  -V, --version              Print version

with connection options

if any options are not provided, you will be prompted to input them. if you do not provide an input, that option will default to what is in your environment variables.

rainfrog \
  --driver <db_driver> \
  --username <username> \
  --host <hostname> \
  --port <db_port> \
  --database <db_name>

with connection url

the connection_url must include all the necessary options for connecting to the database (ex. postgres://username:password@localhost:5432/postgres). it will take precedence over all connection options.

rainfrog --url $(connection_url)

docker run

for postgres and mysql, you can run it by specifying all of the options as environment variables:

docker run --platform linux/amd64 -it --rm --name rainfrog \
  --add-host host.docker.internal:host-gateway \
  -e db_driver="db_driver" \
  -e username="<username>" \
  -e password="<password>" \
  -e hostname="host.docker.internal" \
  -e db_port="<db_port>" \
  -e db_name="<db_name>" achristmascarl/rainfrog:latest

if you want to provide a custom combination of options and omit others, you can override the Dockerfile's CMD like so:

docker run --platform linux/amd64 -it --rm --name rainfrog \
  achristmascarl/rainfrog:latest \
  rainfrog # overrides CMD, additional options would come after

since sqlite is file-based, you may need to mount a path to the sqlite db as a volume in order to access it:

docker run --platform linux/amd64 -it --rm --name rainfrog \
  -v ~/code/rainfrog/dev/rainfrog.sqlite3:/rainfrog.sqlite3 \
  achristmascarl/rainfrog:latest \
  rainfrog --url sqlite:///rainfrog.sqlite3

customization

rainfrog can be customized by placing a rainfrog_config.toml file in one of the following locations depending on your os, as determined by the directories crate:

PlatformValueExample
Linux$XDG_CONFIG_HOME/_project_path_ or $HOME/.config/_project_path_/home/alice/.config/barapp
macOS$HOME/Library/Application Support/_project_path_/Users/Alice/Library/Application Support/com.Foo-Corp.Bar-App
Windows{FOLDERID_LocalAppData}\_project_path_\configC:\Users\Alice\AppData\Local\Foo Corp\Bar App\config

you can change the default config location by exporting an environment variable. to make the change permanent, add it to your .zshrc/.bashrc/.*rc file:

export RAINFROG_CONFIG=~/.config

settings

right now, the only setting available is whether rainfrog captures mouse events by default. capturing mouse events allows you to change focus and scroll using the mouse. however, your terminal will not handle mouse events like it normally does (you won't be able to copy by highlighting, for example).

keybindings

you can customize some of the default keybindings, but not all of them. to see a list of the ones you can customize, see the default config file at .config/rainfrog_config.toml. below are the default keybindings.

general

keybindingdescription
Ctrl+cquit program
Alt+1, Ctrl+kchange focus to menu
Alt+2, Ctrl+jchange focus to query editor
Alt+3, Ctrl+hchange focus to results
Alt+4, Ctrl+gchange focus to query history
Tabcycle focus forwards
Shift+Tabcycle focus backwards
q, Alt+q in query editorabort current query

menu (list of schemas and tables)

keybindingdescription
j, move selection down by 1
k, move selection up by 1
gjump to top of current list
Gjump to bottom of current list
h, focus on schemas (if more than 1)
l, focus on tables
/filter tables
Escclear search
Backspacefocus on tables
Enter when searchingfocus on tables
Enter with selected schemafocus on tables
Enter with selected tablepreview table (100 rows)
Rreload 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.

KeybindingDescription
Alt+Enter, F5Execute 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
wMove cursor to next start of word
eMove cursor to next end of word
bMove cursor to previous start of word
0Move cursor to beginning of line
$Move cursor to end of line
ggJump to top of editor
GJump to bottom of current list
EscReturn to normal mode
iEnter insert (edit) mode
IEnter insert mode at beginning of line
AEnter insert mode at end of line
oInsert new line below and enter insert
vEnter visual (select) mode
VEnter visual mode and select line
rBegin replace operation
yBegin yank (copy) operation
xBegin cut operation
pPaste from clipboard
uUndo
Ctrl+rRedo
Ctrl+eScroll down
Ctrl+yScroll up

query history

keybindingdescription
j, move selection down by 1
k, move selection up by 1
gjump to top of list
Gjump to bottom of list
ycopy selected query
Iedit selected query in editor
Ddelete all history

results

keybindingdescription
j, scroll down by 1 row
k, scroll up by 1 row
h, scroll left by 1 cell
l, scroll right by 1 cell
bscroll right by 1 cell
e, wscroll left by 1 column
{, PageUp, Ctrl+bjump up one page
}, PageDown, Ctrl+fjump down one page
gjump to top of table
Gjump to bottom of table
0jump to first column
$jump to last column
vselect individual field
Vselect row
Enterchange selection mode inwards
Backspacechange selection mode outwards
ycopy selection
Escstop selecting

roadmap

<details> <summary><b>🏁 v0.1.0 – alpha</b></summary> </details> <details> <summary><b>🏁 v0.2.0 – beta</b></summary> </details>

now that rainfrog is in beta, check out the issues tab for planned features

known issues and limitations

you can find other reported issues in the issues tab

Contributing

for bug reports and feature requests, please create an issue.

please read CONTRIBUTING.md before opening issues or creating PRs.

acknowledgements