fsh/cfg/kanbash.conf

18 lines
500 B
Plaintext

#
# kanban config file
#
# Kanban(dot)Bash
# @origin git@github.com:coderofsalvation/kanban.bash.git
# define available statuses
statuses=('Planned' 'Next' 'Blocked' 'Blocking' 'Doing' 'Review' 'Archive')
# @todo - custom message, csv string?
# maximum amount of todos within status (triggers warning when exceeds)
declare -a maximum_todo
# @todo - create migrations for all past & current statuses
maximum_todo["Doing"]=3
maximum_todo["Next"]=5
maximum_todo["Blocked"]=7
maximum_todo["Review"]=11