A simple Kanban board for the terminal.
Find a file
Dan Anglin c336fcd82b
feat: add database functions
Add database functions to read and write statuses to the status bucket
in a BoltDB database.

Add database functions to read and write cards to the card bucket.

Use encoding/gob to encode the Status and Card values before writing
them to the database.
2021-08-16 01:56:56 +01:00
test feat: add database functions 2021-08-16 01:56:56 +01:00
.gitignore feat: add database functions 2021-08-16 01:56:56 +01:00
db.go feat: add database functions 2021-08-16 01:56:56 +01:00
db_test.go feat: add database functions 2021-08-16 01:56:56 +01:00
go.mod feat: add database functions 2021-08-16 01:56:56 +01:00
go.sum feat: add database functions 2021-08-16 01:56:56 +01:00
kanban.go feat: add database functions 2021-08-16 01:56:56 +01:00
LICENSE Add LICENSE 2021-08-12 18:39:29 +00:00
README.md feat: add database functions 2021-08-16 01:56:56 +01:00

Pelican

Summary

Pelican 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/pelican/pelican.db If $XDG_DATA_HOME is not set then the default location is $HOME/.local/share/pelican/pelican.db by default. For all other operating systems the default location is $HOME/.pelican/pelican.db.

Keybindings

Inspiration

The toukan project.