kanban

Kanban client in Gio
Log | Files | Refs | README | LICENSE

commit 548743e8c1cfe84ce7b694f8a2ea58d327b50d29
parent 0b860b22a88b95912aef685887b164fb580bb033
Author: Jack Mordaunt <jackmordaunt@gmail.com>
Date:   Thu,  5 Nov 2020 17:49:08 +0800

docs: readme and screenshots

Diffstat:
Aimg/edit-view.png | 0
Aimg/main-view.png | 0
Areadme.md | 21+++++++++++++++++++++
3 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/img/edit-view.png b/img/edit-view.png Binary files differ. diff --git a/img/main-view.png b/img/main-view.png Binary files differ. diff --git a/readme.md b/readme.md @@ -0,0 +1,21 @@ +# Kanban + +> Kanban app in (pure) Go using the Gio toolkit. + +This application implements a simple Kanban workflow. +It represents a small vertical slice of what a desktop app might look like with +Gio, in both structure and aesthetic. + +The codebase is prototypical and contains some experiments that may fall outside +Gio idioms. In that light, this could make a great place for discovering patterns +that work well with Gio for the desktop environment. + +- Data is stored in a [Bolt](https://github.com/etcd-io/bbolt) database on disk. +- GUI is rendered via [Gio](https://gioui.org/). + +Feedback welcome! + +`go get -u git.sr.ht/~jackmordaunt/kanban/... && kanban` + +![main-view](https://git.sr.ht/~jackmordaunt/kanban/blob/master/img/main-view.png) +![edit-view](https://git.sr.ht/~jackmordaunt/kanban/blob/master/img/edit-view.png)