A command-line tool for installing and running FluxQueue workers.
pip install fluxqueue-cliUse the CLI to install the worker on your system:
fluxqueue worker installYou can also install it in a custom path:
fluxqueue worker install --path .fluxqueue/To start a worker, provide the path to the module where your tasks are exported:
fluxqueue start --tasks-module-path src/tasksTo start the worker installed at the custom path you can do the following,
add these lines in your pyproject.toml:
[tool.fluxqueue_cli]
worker_path = ".fluxqueue/fluxqueue-worker"Then running the command above will run that worker by default.
For more information and documenation about the usage please visit FluxQueue Documentation.
FluxQueue is licensed under the Apache-2.0 license. See LICENSE for details.