You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Takayuki Maeda c56f1836ed sleep 2 3 years ago
.github/workflows sleep 2 3 years ago
database-tree add README to database-tree (#50) 3 years ago
resources Add Configuration section to README (#47) 3 years ago
src Add Configuration section to README (#47) 3 years ago
.gitignore Refactor components (#12) 3 years ago
Cargo.lock Publish database-tree (#49) 3 years ago
Cargo.toml Publish database-tree (#49) 3 years ago
README.md v0.1.0-alpha.1 (#48) 3 years ago
sample.toml Pass config file path as a command line argument (#45) 3 years ago

README.md

gobang

gobang is currently in alpha

A cross-platform terminal database tool written in Rust

github workflow status crates

gobang

Features

  • Cross-platform support (macOS, Windows, Linux)
  • Multiple Database support (MySQL PostgreSQL, SQLite)
  • Intuitive keyboard only control

Installation

Cargo

If you already have a Rust environment set up, you can use the cargo install command:

$ cargo install --version 0.1.0-alpha.1 gobang

Keymap

Key Description
h Scroll left
j Scroll down
k Scroll up
l Scroll right
Ctrl + d Scroll down multiple lines
Ctrl + u Scroll up multiple lines
y Copy a cell value
Move focus to right
Move focus to left
/ Filter

Configuration

The location of the file depends on your OS:

  • macOS: $HOME/.config/gitui/config.toml
  • Linux: $HOME/.config/gitui/config.toml
  • Windows: %APPDATA%/gitui/config.toml

The following is a sample config.toml file:

[[conn]]
type = "mysql"
user = "root"
host = "localhost"
port = 3306

[[conn]]
type = "mysql"
user = "root"
host = "localhost"
port = 3306
database = "foo"