A simple Kanban board for the terminal.
Find a file
Dan Anglin b07ce3f415
refactor: new Board type in board package
Create a new Board type in the board package which is a wrapper around
the BoltDB db pointer to remove direct access to the BoltDB database
from the UI package.
2023-04-22 13:18:13 +01:00
cmd/canal chore: updated go module 2023-02-14 07:54:10 +00:00
internal refactor: new Board type in board package 2023-04-22 13:18:13 +01:00
magefiles chore: update project 2023-04-22 06:19:50 +01:00
test/databases test: move test databases 2021-08-16 02:48:57 +01:00
.gitignore refactor: project rename 2021-09-25 13:13:41 +01:00
.golangci.yaml refactor: lint fixes with golangci-lint 2021-09-15 10:09:48 +01:00
go.mod chore: update project 2023-04-22 06:19:50 +01:00
go.sum chore: update project 2023-04-22 06:19:50 +01:00
LICENSE refactor: project rename 2021-09-25 13:13:41 +01:00
README.md refactor: project rename 2021-09-25 13:13:41 +01:00

Canal

Summary

Canal is a simple Kanban board for your terminal.

Storage

Data is stored in a BoltDB database. For Linux the default the database file is located at $XDG_DATA_HOME/canal/canal.db If $XDG_DATA_HOME is not set then the default location is $HOME/.local/share/canal/canal.db by default. For all other operating systems the default location is $HOME/.canal/canal.db.

Keybindings

Inspiration

The toukan project.