A comprehensive Python CLI tool for managing Calimero nodes in Docker containers and executing complex blockchain workflows.
- π Quick Start
- β¨ Features
- π Auth Service Integration
- π Workflow Guide
- π§ API Reference
- π οΈ Development Guide
- β Troubleshooting
- ποΈ Project Structure
- π Requirements
- π Releases & Publishing
- π€ Contributing
- π License
- π Support
# From PyPI
pipx install merobox
# From source
git clone https://github.com/calimero-network/merobox.git
cd merobox
pipx install -e .
# From Homebrew
brew install merobox# Start Calimero nodes
merobox run --count 2
# Start nodes with authentication service
merobox run --auth-service
# Check node status
merobox list
merobox health
# Execute a workflow
merobox bootstrap run workflow.yml
# Stop all nodes and auth services
merobox stop --all- Node Management: Start, stop, and monitor Calimero nodes in Docker
- Auth Service Integration: Traefik proxy and authentication service with nip.io DNS
- Workflow Orchestration: Execute complex multi-step workflows with YAML
- Context Management: Create and manage blockchain contexts
- Identity Management: Generate and manage cryptographic identities
- Function Calls: Execute smart contract functions via JSON-RPC
- Dynamic Variables: Advanced placeholder resolution with embedded support
Merobox supports integrated authentication services with Traefik proxy and nip.io DNS resolution, enabling secure access to your Calimero nodes through web URLs.
# Start a single node with auth service
merobox run --auth-service
# Start multiple nodes with auth service
merobox run --count 2 --auth-service
# Stop everything (nodes + auth services)
merobox stop --allWhen you enable --auth-service, merobox automatically creates:
- Traefik Proxy (
proxycontainer) - Routes traffic and applies middleware - Auth Service (
authcontainer) - Handles authentication and authorization - Docker Networks:
calimero_web- External communication (Traefik β Internet)calimero_internal- Secure backend communication (Auth β Nodes)
With Auth Service:
- Node URLs:
http://node1.127.0.0.1.nip.io,http://node2.127.0.0.1.nip.io, etc. - Auth Login:
http://node1.127.0.0.1.nip.io/auth/login - Admin Dashboard:
http://node1.127.0.0.1.nip.io/admin-dashboard
Without Auth Service:
- Admin Dashboard:
http://localhost:2528/admin-dashboard - Admin API:
http://localhost:2528/admin-api/
Enable auth service in workflows by adding auth_service: true:
name: "My Auth Workflow"
description: "Workflow with authentication enabled"
# Enable auth service
auth_service: true
nodes:
count: 1
base_port: 2428
base_rpc_port: 2528
chain_id: "testnet-1"
steps:
- name: "Wait for startup"
type: "wait"
seconds: 5Internet β Traefik (port 80) β Node Containers (calimero_web network)
β
Auth Service (calimero_internal network)
- Public routes:
/admin-dashboard(no auth required) - Protected routes:
/admin-api/,/jsonrpc,/ws(auth required) - Auth routes:
/auth/login,/admin/(handled by auth service)
Merobox workflows are defined in YAML files and executed through the bootstrap command. Workflows can include multiple steps like installing applications, creating contexts, managing identities, and executing function calls.
name: "Sample Workflow"
nodes:
- calimero-node-1
- calimero-node-2
steps:
- name: "Install Application"
type: "install"
node: "calimero-node-1"
path: "./app.wasm"
outputs:
applicationId: "app_id"Installs WASM applications on Calimero nodes.
- name: "Install App"
type: "install"
node: "calimero-node-1"
path: "./application.wasm" # Local path
# OR
url: "https://example.com/app.wasm" # Remote URL
dev: true # Development mode
outputs:
applicationId: "app_id"Creates blockchain contexts for applications.
- name: "Create Context"
type: "context"
node: "calimero-node-1"
application_id: "{{app_id}}"
params:
param1: "value1"
outputs:
contextId: "context_id"
memberPublicKey: "member_key"Generates cryptographic identities.
- name: "Create Identity"
type: "identity"
node: "calimero-node-2"
outputs:
publicKey: "public_key"Invites identities to join contexts.
- name: "Invite Identity"
type: "invite"
node: "calimero-node-1"
context_id: "{{context_id}}"
grantee_id: "{{public_key}}"
outputs:
invitation: "invitation_data"Joins contexts using invitations.
- name: "Join Context"
type: "join"
node: "calimero-node-2"
context_id: "{{context_id}}"
invitee_id: "{{public_key}}"
invitation: "{{invitation_data}}"Executes smart contract functions.
- name: "Call Function"
type: "call"
node: "calimero-node-1"
context_id: "{{context_id}}"
method: "set"
args:
key: "hello"
value: "world"
executor_public_key: "{{member_key}}"
outputs:
result: "function_result"Adds delays between steps.
- name: "Wait"
type: "wait"
seconds: 5Executes steps multiple times.
- name: "Repeat Operations"
type: "repeat"
count: 3
steps:
- name: "Set Value"
type: "call"
node: "calimero-node-1"
context_id: "{{context_id}}"
method: "set"
args:
key: "iteration_{{current_iteration}}"
value: "value_{{current_iteration}}"
executor_public_key: "{{member_key}}"
outputs:
result: "iteration_result"
- name: "Wait"
type: "wait"
seconds: 2
outputs:
iteration: "current_iteration"Uploads files to blob storage and captures blob IDs for E2E testing.
- name: "Upload File to Blob Storage"
type: "upload_blob"
node: "calimero-node-1"
file_path: "res/kv_store.wasm" # Path to file on local filesystem
context_id: "{{context_id}}" # Optional: associate with context
outputs:
blob_id: "wasm_blob_id" # Capture the blob ID
size: "wasm_blob_size" # Capture the blob size
# Use the blob ID in contract calls
- name: "Register Blob in Contract"
type: "call"
node: "calimero-node-1"
context_id: "{{context_id}}"
method: "register_blob"
args:
blob_id: "{{wasm_blob_id}}" # Use real blob ID from upload
size: "{{wasm_blob_size}}" # Use real size from uploadFeatures:
- Upload files from local filesystem to blob storage
- Capture
blob_idandsizefor use in subsequent steps - Optional context association via
context_id - Full binary file support
- Automatic error handling and validation
Workflows support dynamic variable substitution using {{variable_name}} syntax.
- Step Outputs: Variables exported by previous steps
- Workflow Context: Global workflow variables
- Environment: System environment variables
Variables can be embedded within strings:
args:
key: "user_{{user_id}}_data_{{iteration}}"- Variables are resolved at execution time
- Missing variables cause workflow failures
- Use
outputssections to export variables for later use
Each step can export variables for use in subsequent steps:
outputs:
variableName: "export_name" # Maps API response field to export nameSee workflow-examples/workflow-example.yml for a complete example.
Call-like steps (type: call) return a JSON payload. You can export fields from that payload to named variables via the outputs mapping, and then reference those variables in subsequent steps using {{variable_name}}.
Example (from workflow-execute-variables-example.yml):
- name: Execute Get
type: call
node: calimero-node-2
context_id: "{{ctx_id}}"
executor_public_key: "{{member_key}}"
method: get
args:
key: example_key
outputs:
# Simple field access
read_value: result
# Nested field access with automatic JSON parsing
# If result contains { "output": "value" }, this extracts "value"
nested_value: result.output
# Deep nesting also works: result.data.user.name.first
deeply_nested: result.data.user.name
- name: Echo Exported Value
type: script
target: local
inline: |
echo "Exported value is: {{read_value}}"
echo "Nested value is: {{nested_value}}"Syntax options:
-
Simple dotted path (recommended): Use dot notation to access nested fields. The system automatically parses JSON strings at each level.
outputs: my_value: result.output # Simple nested access deep_value: result.data.user.name # Deep nesting array_item: items.0.id # Array indexing
-
Dict-based syntax (legacy, still supported): For backward compatibility, you can use the explicit dict form:
outputs: my_value: field: result # top-level field name to read from json: true # parse JSON if the field is a JSON string path: output # dotted path inside the parsed JSON
Notes:
- The
outputskeys (e.g.,read_value) become variables you can interpolate later as{{read_value}}. - For more advanced mappings (including per-node variable names), see
workflow-custom-outputs-example.yml.
The script step can execute a script in three ways:
target: imageruns the script inside a temporary container created from the node image (before nodes are started)target: nodescopies and runs the script inside each running Calimero node containertarget: localruns the script on your host machine via/bin/sh
You can also pass arguments and reference exported variables using placeholders. Arguments are resolved before execution.
Example:
- name: Echo Exported Value
type: script
target: local # or "nodes" / "image"
script: ./workflow-examples/scripts/echo-exported-value.sh
args:
- "{{read_value}}" # placeholder resolved from previous step outputsNotes:
- The
scriptfield must be only the path to the script; pass parameters via theargs:list. - Placeholders in
argsare resolved using previously exported variables and workflow results. - For container targets, the script is copied into the container and executed with
/bin/sh.
Statement-based assertions against exported variables and literals.
Supported forms:
is_set(A)/is_empty(A)contains(A, B)/not_contains(A, B)regex(A, PATTERN)- Comparisons:
A == B,A != B,A >= B,A > B,A <= B,A < B - Equality helpers:
equal(A, B),equals(A, B),not_equal(A, B),not_equals(A, B)
Placeholders like {{var}} are resolved before evaluation.
Example:
- name: Assert exported variables
type: assert
statements:
- "is_set({{context_id}})"
- "{{count}} >= 1"
- "contains({{get_result}}, 'hello')"
- "regex({{value}}, '^abc')"
- "equal({{a}}, {{b}})"Compare JSON-like values (Python dict/list or JSON strings).
Supported forms:
json_equal(A, B)/equal(A, B)json_subset(A, B)/subset(A, B)(B must be subset of A)
Example:
- name: Assert JSON equality of get_result
type: json_assert
statements:
- "json_equal({{get_result}}, {'output': 'assert_value'})"merobox [OPTIONS] COMMAND [ARGS]...--version: Show version and exit--help: Show help message and exit
Start Calimero nodes.
merobox run [OPTIONS]Options:
--count INTEGER: Number of nodes to start (default: 1)--prefix TEXT: Node name prefix (default: "calimero-node")--restart: Restart existing nodes--image TEXT: Custom Docker image to use--force-pull: Force pull Docker image even if it exists locally--auth-service: Enable authentication service with Traefik proxy--auth-image TEXT: Custom Docker image for the auth service (default: ghcr.io/calimero-network/mero-auth:edge)--log-level TEXT: Set the RUST_LOG level for Calimero nodes (default: debug). Supports complex patterns like 'info,module::path=debug'--help: Show help message
Stop Calimero nodes.
merobox stop [OPTIONS]Options:
--all: Stop all running nodes and auth service stack--auth-service: Stop auth service stack only (Traefik + Auth)--prefix TEXT: Stop nodes with specific prefix--help: Show help message
List running Calimero nodes.
merobox list [OPTIONS]Options:
--help: Show help message
Check health status of nodes.
merobox health [OPTIONS]Options:
--help: Show help message
View node logs.
merobox logs [OPTIONS] NODE_NAMEOptions:
--follow: Follow log output--help: Show help message
Execute workflows and validate configurations.
merobox bootstrap [OPTIONS] COMMAND [ARGS]...Subcommands:
run <config_file>: Execute a workflowvalidate <config_file>: Validate workflow configurationcreate-sample: Create a sample workflow file
Run Command Options:
--auth-service: Enable authentication service with Traefik proxy--auth-image TEXT: Custom Docker image for the auth service (default: ghcr.io/calimero-network/mero-auth:edge)--log-level TEXT: Set the RUST_LOG level for Calimero nodes (default: debug). Supports complex patterns like 'info,module::path=debug'--verbose, -v: Enable verbose output--help: Show help message
Install applications on nodes.
merobox install [OPTIONS] NODE_NAME PATH_OR_URLOptions:
--dev: Development mode installation--help: Show help message
Manage blockchain contexts.
merobox context [OPTIONS] COMMAND [ARGS]...Subcommands:
create: Create a new contextlist: List contextsshow: Show context details
Manage cryptographic identities.
merobox identity [OPTIONS] COMMAND [ARGS]...Subcommands:
generate: Generate new identitylist: List identitiesshow: Show identity details
Execute smart contract functions.
merobox call [OPTIONS] NODE_NAME CONTEXT_ID METHOD [ARGS]...Options:
--executor-key TEXT: Executor public key--exec-type TEXT: Execution type--help: Show help message
Join blockchain contexts.
merobox join [OPTIONS] NODE_NAME CONTEXT_ID INVITEE_ID INVITATIONOptions:
--help: Show help message
Remove all node data and containers .
merobox nuke [OPTIONS]Options:
--dry-run: Show what would be deleted without actually deleting--force, -f: Force deletion without confirmation prompt--verbose, -v: Show verbose output--prefix TEXT: Filter nodes by prefix (e.g., 'calimero-node-' or 'test-node-')--help: Show help message
Workflows are defined in YAML files with the following structure:
name: "Workflow Name"
# Data cleanup options
nuke_on_start: false # Nuke all data before starting workflow
nuke_on_end: false # Nuke all data after completing workflow
# Image management
force_pull_image: false # Force pull Docker images even if they exist locally
# Node lifecycle
restart: false # Restart nodes at beginning
stop_all_nodes: true # Stop nodes after completion
nodes:
count: 2
prefix: "node-name"
# ... node configuration
steps:
- name: "Step Name"
type: "step_type"
# ... step-specific configurationConfiguration Options:
nuke_on_start: Whentrue, performs complete data cleanup (containers + data) before workflow starts. Ensures clean slate.nuke_on_end: Whentrue, performs complete data cleanup after workflow completes. Useful for CI/CD and testing.force_pull_image: When set totrue, forces Docker to pull fresh images from registries, even if they exist locally. Useful for ensuring latest versions or during development.auth_service: When set totrue, enables authentication service integration with Traefik proxy. Nodes will be configured with authentication middleware and proper routing.
Merobox provides automatic Docker image management to ensure your workflows always have the required images:
- Remote Detection: Automatically detects when images are from remote registries
- Smart Pulling: Only pulls images that aren't available locally
- Progress Display: Shows real-time pull progress and status
-
CLI Flag: Use
--force-pullwith theruncommand for individual operationsmerobox run --image ghcr.io/calimero-network/merod:edge --force-pull
-
Workflow Configuration: Set
force_pull_image: truein your workflow YAMLname: "My Workflow" image: ghcr.io/calimero-network/merod:edge force_pull_image: true # Will force pull all images nodes: count: 2 # ... other node configuration ```
- Development: Always get latest images during development
- Testing: Ensure consistent image versions across environments
- CI/CD: Force fresh pulls in automated workflows
- Production: Update images without manual intervention
CALIMERO_IMAGE: Docker image for Calimero nodesDOCKER_HOST: Docker daemon connection stringLOG_LEVEL: Logging level (DEBUG, INFO, WARNING, ERROR)CALIMERO_AUTH_FRONTEND_FETCH: Set to0to use cached auth frontend (default is1for fresh fetch)CALIMERO_WEBUI_FETCH: Set to0to use cached WebUI frontend (default is1for fresh fetch)
Merobox provides flexible logging configuration for Calimero nodes through both CLI flags and workflow variables.
# Use different log levels
merobox run --log-level info
merobox run --log-level warn
merobox run --log-level error
merobox run --log-level trace
# Use complex RUST_LOG patterns for specific module debugging
merobox run --log-level "info,calimero_context::handlers::execute=debug,calimero_node::handlers::network_event=debug"
merobox run --log-level "warn,calimero_server::ws=trace"
# Bootstrap workflows with custom log level
merobox bootstrap run workflow.yml --log-level "info,calimero_context::handlers::execute=debug"name: "My Workflow"
log_level: "info,calimero_context::handlers::execute=debug" # Set log level for all nodes in this workflow
nodes:
count: 2
# ... other node configurationerror: Only error messages (least verbose)warn: Warning and error messagesinfo: Informational, warning, and error messagesdebug: Debug, info, warning, and error messages (default)trace: All messages including trace-level details (most verbose)
RUST_LOG supports sophisticated logging configuration with module-specific levels:
# Set global level to info, but enable debug for specific modules
merobox run --log-level "info,calimero_context::handlers::execute=debug,calimero_node::handlers::network_event=debug"
# Set global level to warn, but enable trace for WebSocket handling
merobox run --log-level "warn,calimero_server::ws=trace"
# Multiple module-specific levels
merobox run --log-level "info,calimero_context::handlers::execute=debug,calimero_node::handlers::network_event=debug,calimero_server::ws=debug"Pattern Syntax:
global_level- Sets the default log levelmodule::path=level- Sets specific level for a module path- Multiple patterns separated by commas
- Use quotes to prevent shell interpretation of special characters
# Production setup with minimal logging
merobox run --count 3 --log-level warn
# Development with maximum verbosity
merobox run --count 2 --log-level trace
# Workflow with custom log level
merobox bootstrap run production-workflow.yml --log-level infoMerobox supports integration with Calimero's authentication service using Traefik as a reverse proxy. When enabled, nodes are automatically configured with:
- Protected API Endpoints: JSON-RPC and admin API routes require authentication
- Public Admin Dashboard: Admin dashboard remains publicly accessible
- WebSocket Protection: WebSocket connections are also authenticated
- Automatic Routing: Traefik handles routing to node-specific subdomains
- Docker Networks: Automatically creates
calimero_webandcalimero_internalnetworks - Traefik Labels: Adds proper routing labels for each node
- CORS Support: Configured CORS middleware for web access
Merobox provides flexible options for managing auth service frontend updates:
- Fresh Frontend (Default): By default, auth service fetches fresh frontend resources (
CALIMERO_AUTH_FRONTEND_FETCH=1) - Cached Mode: Use
--auth-use-cachedflag or setCALIMERO_AUTH_FRONTEND_FETCH=0to use cached auth frontend - Custom Images: Specify custom auth images with
--auth-imageflag orauth_imagein workflow config - Workflow Config: Set
auth_use_cached: truein workflow YAML to use cached auth frontend
Environment Variable Usage:
# Use cached auth frontend for all auth service operations
export CALIMERO_AUTH_FRONTEND_FETCH=0
merobox run --auth-service
# Or set for single command
CALIMERO_AUTH_FRONTEND_FETCH=0 merobox run --auth-serviceMerobox provides flexible options for managing node WebUI frontend updates:
- Fresh Frontend (Default): By default, nodes fetch fresh WebUI frontend resources (
CALIMERO_WEBUI_FETCH=1) - Cached Mode: Use
--webui-use-cachedflag or setCALIMERO_WEBUI_FETCH=0to use cached WebUI frontend - Custom Images: Specify custom node images with
--imageflag orimagein workflow config - Workflow Config: Set
webui_use_cached: truein workflow YAML to use cached WebUI frontend
Environment Variable Usage:
# Use cached WebUI frontend for all node operations
export CALIMERO_WEBUI_FETCH=0
merobox run --count 2
# Or set for single command
CALIMERO_WEBUI_FETCH=0 merobox run --count 2CLI Usage:
# Start nodes with auth service
merobox run --count 2 --auth-service
# Start nodes with custom auth image
merobox run --count 2 --auth-service --auth-image ghcr.io/calimero-network/mero-auth:latest
# Use cached auth frontend (instead of default fresh fetch)
merobox run --count 2 --auth-service --auth-use-cached
# Use cached WebUI frontend for nodes (instead of default fresh fetch)
merobox run --count 2 --webui-use-cached
# Use cached mode for both auth and WebUI
merobox run --count 2 --auth-service --auth-use-cached --webui-use-cached
# Run workflow with auth service
merobox bootstrap run workflow.yml --auth-service
# Run workflow with custom auth image
merobox bootstrap run workflow.yml --auth-service --auth-image ghcr.io/calimero-network/mero-auth:latest
# Run workflow with cached auth frontend
merobox bootstrap run workflow.yml --auth-service --auth-use-cached
# Run workflow with cached WebUI frontend
merobox bootstrap run workflow.yml --webui-use-cached
# Run workflow with both auth and WebUI in cached mode
merobox bootstrap run workflow.yml --auth-service --auth-use-cached --webui-use-cached
# Stop auth service stack
merobox stop --auth-serviceWorkflow Configuration:
name: "Frontend Management Workflow"
# Auth service configuration (fresh frontend is default, use cached if needed)
auth_service: true # Enable auth service for this workflow
auth_image: "ghcr.io/calimero-network/mero-auth:edge" # Custom auth image
auth_use_cached: true # Use cached auth frontend instead of fresh (optional)
# Node configuration (fresh WebUI is default, use cached if needed)
image: "ghcr.io/calimero-network/merod:edge" # Custom node image
webui_use_cached: true # Use cached WebUI frontend instead of fresh (optional)
nodes:
count: 2
prefix: "calimero-node"
steps:
# ... your workflow stepsAccess Patterns:
- Node 1 API:
http://calimero-node-1.127.0.0.1.nip.io/jsonrpc(protected) - Node 1 Dashboard:
http://calimero-node-1.127.0.0.1.nip.io/admin-dashboard(public) - Auth Service:
http://localhost/auth/(authentication endpoints)
When auth service is enabled, Merobox automatically:
- Starts Traefik Proxy: Automatically pulls and starts
traefik:v2.10container - Starts Auth Service: Automatically pulls and starts
ghcr.io/calimero-network/calimero-auth:latestcontainer - Creates Docker Networks: Sets up
calimero_webandcalimero_internalnetworks - Configures Node Labels: Adds proper Traefik routing labels to node containers
- Sets up Authentication: Configures forward authentication middleware
- Enables CORS: Configures CORS for web access
Service Management:
- Start: Services are started automatically when
--auth-serviceflag is used - Stop: Use
merobox stop --auth-serviceto stop Traefik and Auth service - Status Check: Services are checked and reused if already running
Merobox can be used as a lightweight test harness for your Python projects. Use the built-in helpers in merobox.testing to spin up ephemeral Calimero nodes for integration tests and tear them down automatically.
Context manager:
from merobox.testing import cluster
with cluster(count=2, prefix="ci", image="ghcr.io/calimero-network/merod:edge") as env:
# env["nodes"] -> ["ci-1", "ci-2"]
# env["endpoints"]["ci-1"] -> http://localhost:<rpc_port>
... # call your code against the endpointsPytest fixture:
# conftest.py
from merobox.testing import pytest_cluster
merobox_cluster = pytest_cluster(count=2, scope="session")
# test_example.py
def test_something(merobox_cluster):
endpoints = merobox_cluster["endpoints"]
assert len(endpoints) == 2For more complex test scenarios, you can run entire Merobox workflows as pretest setup:
Context manager:
from merobox.testing import workflow
with workflow("workflow-examples/workflow-example.yml", prefix="pretest") as env:
# env["workflow_result"] -> True/False (workflow execution success)
# env["nodes"] -> List of nodes created by the workflow
# env["endpoints"] -> RPC endpoints for each node
# env["manager"] -> DockerManager instance
# Your test logic here
# The workflow environment is automatically cleaned up on exitPytest fixture:
# conftest.py
from merobox.testing import pytest_workflow
merobox_workflow = pytest_workflow(
workflow_path="workflow-examples/workflow-example.yml",
prefix="pretest",
scope="session"
)
# test_example.py
def test_with_workflow_setup(merobox_workflow):
workflow_result = merobox_workflow["workflow_result"]
assert workflow_result is True
nodes = merobox_workflow["nodes"]
endpoints = merobox_workflow["endpoints"]
# ... your test logicOptions for workflow testing:
workflow_path: Path to the workflow YAML fileprefix: Node name prefix filterimage: Custom Docker imagechain_id: Blockchain chain IDwait_for_ready: Whether to wait for nodes to be readyscope: Pytest fixture scope (function, class, module, session)
See testing-examples/ for runnable examples including workflow pretest setup.
- Python 3.8+
- Docker 20.10+
- Git
# Clone repository
git clone https://github.com/calimero-network/merobox.git
cd merobox
# Create virtual environment
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Install in development mode
pip install -e .pip install -r requirements.txtmerobox/
βββ merobox/ # Main package
β βββ __init__.py # Package initialization
β βββ cli.py # CLI entry point
β βββ commands/ # Command implementations
β βββ __init__.py # Commands package
β βββ manager.py # Docker node management
β βββ run.py # Node startup
β βββ stop.py # Node shutdown
β βββ list.py # Node listing
β βββ health.py # Health checking
β βββ logs.py # Log viewing
β βββ install.py # Application installation
β βββ context.py # Context management
β βββ identity.py # Identity management
β βββ call.py # Function execution
β βββ join.py # Context joining
β βββ nuke.py # Data cleanup
β βββ utils.py # Utility functions
β βββ bootstrap/ # Workflow orchestration
β βββ __init__.py
β βββ bootstrap.py # Main bootstrap command
β βββ config.py # Configuration loading
β βββ run/ # Workflow execution
β β βββ __init__.py
β β βββ executor.py # Workflow executor
β β βββ run.py # Execution logic
β βββ steps/ # Step implementations
β β βββ __init__.py
β β βββ base.py # Base step class
β β βββ install.py # Install step
β β βββ context.py # Context step
β β βββ identity.py # Identity step
β β βββ execute.py # Execute step
β β βββ join.py # Join step
β β βββ wait.py # Wait step
β β βββ repeat.py # Repeat step
β β βββ script.py # Script step
β βββ validate/ # Validation logic
β βββ __init__.py
β βββ validator.py
βββ workflow-examples/ # Example workflows
βββ requirements.txt # Python dependencies
βββ setup.py # Package configuration
βββ Makefile # Build automation
βββ README.md # This file
βββ LICENSE # MIT License
# Show all available commands
make help
# Build package
make build
# Check package
make check
# Install in development mode
make install
# Format code
make format
# Check formatting
make format-check# Run tests (when implemented)
make test
# Run specific test file
python -m pytest tests/test_specific.py# Format code with Black
make format
# Check formatting
make format-check
# Lint code (when implemented)
make lint- Create command file in
merobox/commands/ - Implement Click command function
- Add import to
merobox/commands/__init__.py - Update
__all__list - Test with
python3 merobox/cli.py --help
- Create step file in
merobox/commands/bootstrap/steps/ - Inherit from
BaseStep - Implement required methods:
_get_required_fields()_validate_field_types()execute()
- Add step type mapping in executor
- Update validation logic
- Update version in
merobox/__init__.py - Update version in
merobox/cli.py - Update version in
setup.py - Add entry to
CHANGELOG.md
# Build and check
make check
# Test publish to TestPyPI
make test-publish
# Publish to PyPI
make publish- All tests pass
- Documentation updated
- Version bumped
- Changelog updated
- Package builds successfully
- Package validates with twine
- Published to PyPI
Issue: Nodes fail to start
Error: Failed to start Calimero nodeSolutions:
- Check Docker is running:
docker ps - Verify port availability:
netstat -tulpn | grep :2528 - Check Docker permissions:
docker run hello-world - Clean up existing containers:
merobox nuke
Issue: Port conflicts
Error: Port 2528 already in useSolutions:
- Stop conflicting services:
lsof -ti:2528 | xargs kill - Use different ports:
merobox run --count 1 - Clean up:
merobox stop --all
Issue: Dynamic variable resolution fails
Error: Variable '{{missing_var}}' not foundSolutions:
- Check variable names in workflow
- Verify previous steps export variables
- Use
merobox bootstrap validateto check configuration - Check variable naming consistency
Issue: Step validation fails
Error: Required field 'node' missingSolutions:
- Validate workflow:
merobox bootstrap validate workflow.yml - Check step configuration
- Verify required fields are present
- Check field types and values
Issue: API calls fail
Error: API request failedSolutions:
- Check node health:
merobox health - Verify node is ready:
merobox list - Check network connectivity
- Verify API endpoints
Issue: Cannot access node via nip.io URL
ERR_CONNECTION_TIMED_OUT at http://node1.127.0.0.1.nip.ioSolutions:
- Check if auth services are running:
docker ps | grep -E "(proxy|auth)" - Verify DNS resolution:
nslookup node1.127.0.0.1.nip.io - Check Traefik dashboard:
http://localhost:8080/dashboard/ - Restart auth services:
merobox stop --auth-service && merobox run --auth-service
Issue: 404 errors on auth URLs
404 Not Found at http://node1.127.0.0.1.nip.io/auth/loginSolutions:
- Verify auth container is running:
docker logs auth - Check Traefik routing:
curl http://localhost:8080/api/http/routers - Restart the node:
merobox stop node-name && merobox run --auth-service
Issue: Network connection problems
Warning: Could not connect to auth networksSolutions:
- Check Docker networks:
docker network ls | grep calimero - Recreate networks:
merobox stop --all && merobox run --auth-service - Check Docker daemon:
docker system info
Issue: Container creation fails
Error: Failed to create containerSolutions:
- Check Docker daemon:
docker info - Verify image exists:
docker images calimero/calimero - Check disk space:
df -h - Restart Docker:
sudo systemctl restart docker
Issue: Container networking problems
Error: Network connection failedSolutions:
- Check Docker network:
docker network ls - Verify container networking:
docker inspect <container> - Check firewall settings
- Restart Docker networking
Issue: Slow workflow execution
Workflow taking longer than expectedSolutions:
- Check node resources:
docker stats - Monitor system resources:
htop,iotop - Optimize workflow steps
- Use appropriate wait times
Issue: High memory usage
Container using excessive memorySolutions:
- Check memory limits:
docker stats - Monitor memory usage:
free -h - Restart nodes if needed
- Check for memory leaks
export LOG_LEVEL=DEBUG
merobox bootstrap run workflow.ymlmerobox bootstrap run --verbose workflow.ymlmerobox logs <node_name> --followdocker exec -it <container_name> /bin/sh
docker inspect <container_name># Check container networking
docker network inspect bridge
# Test connectivity
docker exec <container> ping <target>
# Check port binding
netstat -tulpn | grep :2528- Check Documentation: Review relevant sections above
- Validate Workflows: Use
merobox bootstrap validate - Check Logs: Review node and application logs
- Community Support: GitHub Issues
- Command Help:
merobox --helpormerobox <command> --help
merobox/
βββ merobox/ # Main package
β βββ cli.py # CLI entry point
β βββ commands/ # Command implementations
β βββ bootstrap/ # Workflow orchestration
β βββ run.py # Node management
β βββ call.py # Function execution
β βββ ... # Other commands
βββ workflow-examples/ # Example workflows
βββ Makefile # Build automation
βββ README.md # This comprehensive documentation
- Python: 3.8+
- Docker: 20.10+ for Calimero nodes
- OS: Linux, macOS, Windows
Merobox uses a fully automated release pipeline. When you bump the version, everything else happens automatically!
# 1. Update version in ONE place only
vim merobox/__init__.py # Change __version__ = "0.1.28"
# 2. Commit and push to master
git add merobox/__init__.py
git commit -m "chore: bump version to 0.1.28"
git push origin master
# 3. That's it! The automation handles:
# β Creates git tag (v0.1.28)
# β Builds binaries for all platforms
# β Creates GitHub release
# β Publishes to PyPI-
Auto-Tagging (~ 5 seconds)
- Detects version change in
__init__.py - Creates and pushes tag
vX.Y.Z - Comments on commit with status
- Detects version change in
-
Build Binaries (~ 5-10 minutes)
- macOS x64 & arm64
- Linux x64 & arm64
- Generates SHA256 checksums
-
Create Release (~ 30 seconds)
- Publishes GitHub release with binaries
- Auto-generates release notes
-
Publish to PyPI (~ 1 minute)
- Builds Python package (sdist + wheel)
- Publishes to PyPI
- Publishes to TestPyPI (optional)
- Single Source of Truth:
merobox/__init__.py - Dynamic Reading:
pyproject.tomlreads version from__init__.pyautomatically - No Duplication: Update version in one place only!
Version Bump β Auto-Tag β Build Binaries β GitHub Release β PyPI
(manual) (automated) (automated) (automated) (automated)
Configure these in GitHub repository settings:
PYPI_API_TOKEN- PyPI publishing token (required)TEST_PYPI_API_TOKEN- TestPyPI token (optional)
If you need to publish manually:
# Build package
make clean
make build
# Check package
make check-build
# Publish to PyPI
make publish
# Or publish to TestPyPI
make test-publish- GitHub Actions: https://github.com/calimero-network/merobox/actions
- PyPI Releases: https://pypi.org/project/merobox/
- GitHub Releases: https://github.com/calimero-network/merobox/releases
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
See the Development Guide section above for detailed contribution instructions.
This project is licensed under the MIT License - see the LICENSE file for details.
- Documentation: This comprehensive README
- Examples: See
workflow-examples/directory - Issues: GitHub Issues
- Help:
merobox --helpfor command help