Minimum requirements

Installation

Install and upgrade is done via dotnet CLI. You can leave out the version parameter to install or upgrade to the latest, or specify the --version you want to upgrade to.

dotnet add package ExamineX.ElasticSearch.Umbraco

You will then need to enter a couple configuration settings. Then you’ll need to enable the integration in your Startup.cs and add the .AddExamineXElasticSearch() call after the .AddComposers() call:

public void ConfigureServices(IServiceCollection services)
{
    services.AddUmbraco(_env, _config)
        .AddBackOffice()
        .AddWebsite()
        .AddDeliveryApi()
        .AddComposers()
        .AddExamineXElasticSearch()
        .Build();
}

See Licensing for more information about the types of licenses and what the limitations are without a license.