Getting Started
Installation
Install the appropriate Umbraco versioned package to your solution (f.x. Ekom.U10)
Install the Ekom.Web package into your sites main project (contains wwwroot)
NuGet: https://www.nuget.org/packages/Ekom.U10
dotnet add package Ekom.U10
PM> Install-Package Ekom.U10
Ekom.Web
dotnet add package Ekom.Web
PM> Install-Package Ekom.Web
Add Ekom references into _ViewImports.cshtml
Add these Ekom references into Views/Partials/_ViewImports.cshtml
@using Ekom.Interfaces
@using Ekom.Utilities
@using Ekom.API
@using Ekom
@using Ekom.Models;
@inject Order _order;
@inject Catalog _catalog;
@inject global::Ekom.API.Store _store;
Run the site and Ekom will create all datetypes, document types and nodes.
Ekom root node will be added to your content tree.
Last updated