Updated docs
parent
252d2fead1
commit
43fba808a2
|
@ -19,10 +19,10 @@ Options:
|
|||
--help Show this message and exit.
|
||||
|
||||
Commands:
|
||||
agents Agents group command
|
||||
benchmark Benchmark group command
|
||||
frontend Frontend command group
|
||||
setup Setup command
|
||||
agents Commands to create, start and stop agents
|
||||
benchmark Commands to start the benchmark and list tests and categories
|
||||
frontend Starts the frontend
|
||||
setup Installs dependencies needed for your system.
|
||||
```
|
||||
|
||||
If you need assistance with any command, simply add the `--help` parameter to the end of your command, like so:
|
||||
|
|
8
cli.py
8
cli.py
|
@ -12,7 +12,7 @@ def cli():
|
|||
|
||||
@cli.command()
|
||||
def setup():
|
||||
"""Setup command"""
|
||||
"""Installs dependencies needed for your system. Works with Linux, MacOS and Windows WSL."""
|
||||
import os
|
||||
import subprocess
|
||||
script_dir = os.path.dirname(os.path.realpath(__file__))
|
||||
|
@ -25,7 +25,7 @@ def setup():
|
|||
|
||||
@cli.group()
|
||||
def agents():
|
||||
"""Agents group command"""
|
||||
"""Commands to create, start and stop agents"""
|
||||
pass
|
||||
|
||||
@agents.command()
|
||||
|
@ -104,7 +104,7 @@ def list():
|
|||
|
||||
@cli.group()
|
||||
def benchmark():
|
||||
"""Benchmark group command"""
|
||||
"""Commands to start the benchmark and list tests and categories"""
|
||||
pass
|
||||
|
||||
@benchmark.command(context_settings=dict(
|
||||
|
@ -255,7 +255,7 @@ def benchmark_tests_details(test_name):
|
|||
continue
|
||||
@cli.command()
|
||||
def frontend():
|
||||
"""Frontend command group"""
|
||||
"""Starts the frontend"""
|
||||
import os
|
||||
import subprocess
|
||||
import socket
|
||||
|
|
Loading…
Reference in New Issue