The command shown in README.md:43 has its argument in the wrong order:
ada start --config /path/to/config.yaml
The --config flag must come before the start subcommand. Should be:
ada --config /path/to/config.yaml start
The example fails because start does not support or accept a --config argument.
The command shown in README.md:43 has its argument in the wrong order:
ada start --config /path/to/config.yamlThe
--configflag must come before thestartsubcommand. Should be:ada --config /path/to/config.yaml startThe example fails because
startdoes not support or accept a--configargument.