device
Device management
Description
Provides commands for managing signageOS devices, including connecting to devices for development, controlling device power states, and managing applet deployment.
Usage
sos device <subcommand> [options]
Subcommands
set-content
Deploy applet to device
sos device set-content [options]
power-action
Perform power action on device
sos device power-action <actionType> [options]
connect
Connect device to local development server
sos device connect [options]
Examples
# Connect to device for development
sos device connect --device-uid device123
# Control device power actions
sos device power-action reload --device-uid device123
# Deploy applet to device
sos device set-content --device-uid device123
Since
0.9.0
Global Options
All commands support the following global options:
Option | Alias | Description |
---|---|---|
--help | -h | Display help information for any command |
--version | -v | Display the installed version of the CLI |
--api-url | -u | Override the API URL for REST requests |
--profile | Use a specific profile from ~/.sosrc config |
Examples
# Show version
sos --version
# Get help for any command
sos applet --help
sos applet upload --help
# Use custom API endpoint
sos --api-url https://api.example.com applet upload
# Use specific profile
sos --profile production organization list
Related Commands
sos device set-content
- Deploy applet to devicesos device power-action
- Perform power action on devicesos device connect
- Connect device to local development server