Management Commands
Management commands are thin wrappers around the service layer: they parse arguments, call a
service, and report results. Business logic lives in micboard/services/, so a command can be
replaced by a task or an API call without behaviour changes.
Run any command through the project’s manage.py:
uv run --no-sync python manage.py <command> --helpThe generated Management Commands reference lists every command class, its options, and a link to its source. See Configuration for the settings those commands read.
