def __init__(self, application):
self.application = application
self.parser = parser = argparse.ArgumentParser(description='%s command line interface.' % application.name)
parser.add_argument('-p', '--process-name', metavar="PREFIX", default=application.name,
help='A string indicates the logger prefix for this process, it helps to configure '
'separate log files per process.')
parser.add_argument('-c', '--config-file', metavar="FILE",
help='List of configuration files separated by space. Default: ""')
parser.add_argument('-d', '--config-dir', metavar="DIR",
help='List of configuration directories separated by space. Default: ""')
subparsers = parser.add_subparsers(title="sub commands", prog=application.name, dest="command")
AdminLauncher.register(subparsers)
ServeLauncher.register(subparsers)
MigrateLauncher.register(subparsers)
WorkerLauncher.register(subparsers)
DevLauncher.register(subparsers)
application.register_cli_launchers(subparsers)
argcomplete.autocomplete(parser)
评论列表
文章目录