You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

1.9 KiB

How are Xhiveframework Framework commands available via bench?

bench utilizes xhiveframework.utils.bench_manager to get the framework’s as well as those of any custom commands written in application installed in the Xhiveframework environment. Currently, with version 12 there are commands related to the scheduler, sites, translations and other utils in Xhiveframework inherited by bench.

Can I add CLI commands in my custom app and call them via bench?

Along with the framework commands, Xhiveframework’s bench_manager module also searches for any commands in your custom applications. Thereby, bench communicates with the respective bench’s Xhiveframework which in turn checks for available commands in all of the applications.

To make your custom command available to bench, just create a commands module under your parent module and write the command with a click wrapper and a variable commands which contains a list of click functions, which are your own commands. The directory structure may be visualized as:

xhiveframework-bench
|──apps
    |── xhiveframework
    ├── custom_app
    │   ├── README.md
    │   ├── custom_app
    │   │   ├── commands    <------ commands module
    │   ├── license.txt
    │   ├── requirements.txt
    │   └── setup.py

The commands module maybe a single file such as commands.py or a directory with an __init__.py file. For a custom application of name ‘flags’, example may be given as

# file_path: xhiveframework-bench/apps/flags/flags/commands.py
import click

@click.command('set-flags')
@click.argument('state', type=click.Choice(['on', 'off']))
def set_flags(state):
    from flags.utils import set_flags
    set_flags(state=state)

commands = [
    set_flags
]

and with context of the current bench, this command maybe executed simply as

➜ bench set-flags
Flags are set to state: 'on'