Skip to content

Replace CLI scripts with a single one

Carlos Pascual requested to merge github/fork/cpascual/cli into develop

It would be nice to replace the current console scripts of taurus by a single one that used subcommands (similar to e.g. git). For example, instead of taurusform or taurusdemo we could have taurus form and taurus demo.

The advantages are:

  • less pollution of binary namespace
  • simplified packaging and documentation (just one manpage to maintain)
  • clearer, central point of access for all taurus related commands
  • possibility of defining an entry point so that plugins also provide their own subcommands with a unified interface

Merge request reports