A simple Kanban board for the terminal.
Find a file
Dan Anglin fcb148d583
build: install pelican with mage
- Add an install mage target for installing pelican.
- Display the app's version information using the version flag.
2024-01-10 07:38:54 +00:00
.forgejo/workflows chore: project maintenance 2023-12-12 10:05:25 +00:00
cmd/pelican build: install pelican with mage 2024-01-10 07:38:54 +00:00
internal feat(ui): add new board mode 'Status Selection' 2024-01-09 15:51:23 +00:00
magefiles build: install pelican with mage 2024-01-10 07:38:54 +00:00
test/databases feat: add the pelican project 2023-05-06 12:49:40 +01:00
.gitignore chore(db): remove unused function 2023-12-12 13:04:50 +00:00
.golangci.yaml ci(lint): allow failing lint test for now 2023-12-12 10:18:05 +00:00
go.mod chore: project maintenance 2023-12-12 10:05:25 +00:00
go.sum chore: project maintenance 2023-12-12 10:05:25 +00:00
LICENSE feat: add the pelican project 2023-05-06 12:49:40 +01:00
README.asciidoc build: install pelican with mage 2024-01-10 07:38:54 +00:00

Pelican

Overview

This project is in ALPHA state and is not ready for production use yet.

Pelican is a simple Kanban board for your terminal. Data is stored in a BoltDB database. Pelican does not make any assumptions to the path of the database file; instead the user is expected to specify the path when running the application.

Installation

Requirements

Go

A minimum version of Go 1.21.0 is required for installing spruce. Please go here to download the latest version.

Mage (Optional)

The project includes a magefile for automating the build and installation of the binary. You can visit the website for instructions on how to install Mage.

Install with Mage

You can install pelican with Mage using the following commands:

git clone https://codeflow.dananglin.me.uk/apollo/pelican.git
cd pelican
mage install

The default install prefix is set to /usr/local so pelican will be installed to /usr/local/bin/pelican. If you want to change the install prefix you can set the PELICAN_INSTALL_PREFIX environment variable before installing.

PELICAN_INSTALL_PREFIX=~/.local mage install

Install with Go

If your GOBIN directory is included in your PATH then you can install Pelican with Go.

git clone https://codeflow.dananglin.me.uk/apollo/pelican.git
cd pelican
go install ./cmd/pelican

Running Pelican

To create a new Kanban project with Pelican, simply run the following command:

pelican project.pelican

This will create a new BoltDB database file called project.pelican in your current directory and initialises the database with an empty project.

Keybindings

Key Action

CTRL + q

Quit the application

a

Add card

CTRL + d

Delete card

m

Move card between statuses

Inspiration