uSync.Commands.Server 13.1.0

dotnet add package uSync.Commands.Server --version 13.1.0
NuGet\Install-Package uSync.Commands.Server -Version 13.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="uSync.Commands.Server" Version="13.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add uSync.Commands.Server --version 13.1.0
#r "nuget: uSync.Commands.Server, 13.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install uSync.Commands.Server as a Cake Addin
#addin nuget:?package=uSync.Commands.Server&version=13.1.0

// Install uSync.Commands.Server as a Cake Tool
#tool nuget:?package=uSync.Commands.Server&version=13.1.0

uSync.Commands.Server

uSycnc commands library for Umbraco.

This is the package to install on the Umbraco site to Enable the uSync command line to run against your site.

dotnet add package uSync.Commands.server

Note: this is the root command it doesn't include the uSync specific commands use uSync.Commands to also get them.

Configuration

By default the command line library is disabled for your site, to enable it you need to add values to the appsettings.json file for your site.

 "uSync": {
    "Commands": {
      "Enabled": "hmac,basic",
      "key": "HMAC-KEY-VALUE",
      "UserId" : -1
    }
  }

Options

Enabled

Turns on the Authentication methods for the command line - acceptible values are hmac (key based) and basic (username and password based)

Key

The security key to use when using hmac (key based) authentication, this is the key that you would then need to use on the command line when running remote commands against your site.

usync run [command] https://you-site.com/umbraco -k <KEY-VALUE-HERE>

TIP: You can generate a key with the usync key-gen command

uSync key-gen

this will give you the correct config values to add the key to your site.

UserId

When using Key based authentication Umbraco will authenticate the commands against the default user (-1) unless you set the UserId value - this will then set the permissions for the user to be the same as for the user id you set.

Commands

the core commands included with this package.

info

return information about an umbraco installation

Ping

Ping a server until it is up (at least until Umbraco controllers respond).

Rebuild-DBCache

Rebuild the database cache

Rebuild-Index

Rebuild an examine index on the server

Reload MemCache

Reload the in-memory cache of items

Test

Run a test command 10 times (test the looping of commands.)

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on uSync.Commands.Server:

Package Downloads
uSync.Commands

uSync Command line - server Commands for uSync

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.1.0 95 4/22/2024
10.0.4 7,934 2/13/2023
10.0.3 982 1/30/2023
10.0.2 303 1/30/2023
10.0.1 314 1/27/2023
10.0.0 370 10/19/2022

10.0 Initial release