ticket-management: A basic implementation of a personal ticket management system

[ development, library, mit, program ] [ Propose Tags ]

A basic implementation of a personal ticket management system.


[Skip to Readme]

Modules

  • Data
    • Data.Ticket
  • TicketManager

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.1.0, 0.2.0.0
Change log CHANGELOG.md
Dependencies base (>=4.4 && <5), bytestring (>=0.10 && <0.11), cereal (>=0.5.8.1 && <0.6), containers (>=0.6 && <0.7), directory (>=1.3.6.1 && <1.4), optparse-applicative (>=0.16.1.0 && <0.17), QuickCheck (>=2.14.2 && <2.15), text (>=1.2.4.1 && <1.3), ticket-management, time (>=1.9.3 && <1.10), unliftio (>=0.2.19 && <0.3) [details]
License MIT
Author Samuel Schlesinger
Maintainer samuel@simspace.com
Category Development
Source repo head: git clone https://github.com/samuelschlesinger/ticket-management
Uploaded by sgschlesinger at 2021-08-20T01:28:23Z
Distributions
Executables ticket-manager
Downloads 296 total (8 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2021-08-20 [all 2 reports]

Readme for ticket-management-0.2.0.0

[back to package description]

Ticket Management

A basic ticket management system for personal work. Here is the latest usage info:

Ticket Manager!

Usage: ticket-manager COMMAND
  Allows the user to manage work tickets.

Available commands:
  create                   Creates a new ticket
  edit                     Edits the name, description, and/or status of an
                           existing ticket
  relate                   Relates two tickets to each other
  unrelate                 Removes the relationship between two tickets
  query                    Search for tickets
  init                     Initializes an empty ticket system
  tag                      Applies some tags to tickets
  validate                 Validate the ticket system

Of special note is the help text for the query command:

Usage: ticket-manager query [(-n|--name ARG) | (-x|--tag ARG) | (-i|--id ARG) |
                              (-s|--status ARG) | (-b|--blocks ARG) |
                              (-s|--subsumes ARG) | (-p|--blocked-by ARG) |
                              (-k|--subsumed-by ARG)] [-o|--ordering ARG]
                            [-l|--limit ARG]
  Search for tickets

This tool allows you to create tickets, specify relationships between them, tag them, and then query them. To get all of the tickets you've tagged epic-1 and backend which are not yet in progress, you can run the following:

ticket-manager query --tag epic-1 --tag backend --status todo

You can run instead:

ticket-manager query -x epic-1 -x backend -s todo

To create a ticket, we can run:

ticket-manager create my_first_ticket --name "The Best Ticket" --description "This ticket truly is the best" --status todo

You can run instead:

ticket-manager create my_first_ticket -n "The Best Ticket" -d "This ticket truly is the best" -s todo

With every command there is an associated --help command which I hope will help you learn how to use the rest of the commands.

PRs and feedback is welcome, though I am aware this tool is missing several notable features that today's ticket management systems have like dates, assignment, and lots of other things. These things are left out on purpose, as it is meant to be a simplified version for individuals to use, most notably myself.