Socket
Book a DemoInstallSign in
Socket

github.com/wlanboy/kanbantabs

Package Overview
Dependencies
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/wlanboy/kanbantabs

Source
Go
Version
v0.0.0-20210508102526-577a152980d3
Version published
Created
Source

Go Docker build and publish image

kanbantabs

golang based console kanban board

 ./kanbantabs 
------------------------------------------------------------------------------
dev                      |test                     |prod                     |
------------------------------------------------------------------------------
[1] kanbantabs           |[3] ranger               |[4] azure                |
[2] hazelcast            |                         |[6] gc                   |
[5] chromebook           |                         |                         |

build

  • go get -d -v
  • go clean
  • go build

run

  • go run main.go

install

  • go install

go lang build for docker

  • CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -v .

go lang build for other archs

  • GOOS=linux GOARCH=386 go build (386 needed for busybox)
  • GOOS=linux GOARCH=arm GOARM=6 go build (Raspberry Pi build)
  • GOOS=linux GOARCH=arm64 go build (Odroid C2 build)

docker build

docker build -t kanbantabs:latest . --build-arg BIN_FILE=./kanbantabs

image size

  • 777.72 KB (!)

docker hub

  • https://hub.docker.com/r/wlanboy/kanbantabs

usage with docker

  • alias kanban="docker run -it --rm -v /yourlocalstorage:/home/kanban wlanboy/kanbantabs"
  • kanban
  • kanban lane add
  • kanban lane add
  • kanban card add
  • kanban card move 1

usage with binary

  • ./kanbantabs (show kanban board)
  • ./kanbantabs lane add (add new lane, you will be asked for it's name)
  • ./kanbantabs lane delete 1 (delete first lane)
  • ./kanbantabs card add (add a new card to the first lane, you will be asked for it's name)
  • ./kanbantabs card add 2 (add a new card to the second lane, you will be asked for it's name)
  • ./kanbantabs card move 8 (move card with number 8 to the next lane - will disappear after last lane)
  • ./kanbantabs card delete 8 (delete card with number 8)

FAQs

Package last updated on 08 May 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts