dsc-rs 0.8.2

Discourse CLI tool for managing multiple Discourse forums: track installs, run upgrades over SSH, manage emojis, sync topics and categories as Markdown, and more.
Documentation
# Each Discourse install gets its own [[discourse]] block.
# Only `name` and `baseurl` are required; everything else is optional but
# unlocks more functionality (admin commands need apikey/api_username, SSH
# rebuilds need ssh_host, filtering needs tags, changelog posting needs
# changelog_topic_id).

[[discourse]]
name = "myforum"                                   # unique short name; used everywhere in the CLI
fullname = "My Forum"                              # Discourse site title (optional; display-only)
baseurl = "https://forum.example.com"              # base URL of the Discourse install
apikey = "your_api_key_here"                       # admin API key
api_username = "system"                            # API username the key acts as
ssh_host = "forum.example.com"                     # host used by `dsc update` over SSH (optional)
tags = ["production", "uk"]                        # free-form tags; used by `--tags` filters (optional)
changelog_topic_id = 123                           # topic id to post rebuild changelogs into (optional)

[[discourse]]
name = "otherforum"
fullname = "Other Forum"
baseurl = "https://community.example.org"
apikey = "your_other_api_key_here"
api_username = "system"
ssh_host = "community.example.org"
tags = ["staging"]
changelog_topic_id = 456