Skip to content

Commit 1326734

Browse files
committed
Merge branch 'main' into task/cicd-v2-docs
2 parents bff82b1 + bce2db1 commit 1326734

File tree

78 files changed

+7749
-3064
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+7749
-3064
lines changed

10/umbraco-cms/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,7 @@
415415
* [Add Google Authentication](tutorials/add-google-authentication.md)
416416
* [Add Microsoft Entra ID authentication (Members)](tutorials/add-microsoft-entra-id-authentication.md)
417417
* [The Starter Kit](tutorials/starter-kit/README.md)
418+
* [Install the Starter Kit](tutorials/starter-kit/install-the-starter-kit.md)
418419
* [Lessons](tutorials/starter-kit/lessons/README.md)
419420
* [Customize the Starter Kit](tutorials/starter-kit/lessons/1-customize-the-starter-kit.md)
420421
* [Add a Blog Post Publication Date](tutorials/starter-kit/lessons/2-add-a-blog-post-publication-date/README.md)
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Install the Starter Kit
2+
3+
Installing the Starter Kit provides a pre-built set of templates, content types, and demo content to explore or kickstart your Umbraco project.
4+
5+
## Outcome
6+
7+
You’ll have the Umbraco Starter Kit installed in your local project, ready to explore in the backoffice. This setup adds example content and templates, perfect for learning or quick prototyping.
8+
9+
## Steps
10+
11+
You can install the Starter Kit in two ways, depending on your preference:
12+
13+
* [Option 1: Install via .NET CLI](#option-1-install-via-net-cli)
14+
* [Option 2: Install via Visual Studio](#option-2-install-via-visual-studio)
15+
16+
### Option 1: Install via .NET CLI
17+
18+
To install the Starter Kit via the .Net CLI, follow these steps:
19+
20+
1. Open a terminal in your Umbraco project folder.
21+
2. Run the following command to add the Starter Kit package:
22+
23+
```bash
24+
dotnet add package Umbraco.TheStarterKit
25+
```
26+
27+
3. Build the project:
28+
29+
```bash
30+
dotnet build
31+
```
32+
33+
4. Run the project:
34+
35+
```bash
36+
dotnet run
37+
```
38+
39+
5. Go to `https://localhost:xxxx/` to view the Starter Kit content.
40+
41+
### Option 2: Install via Visual Studio
42+
43+
To install the starter Kit via Visual Studio, follow these steps:
44+
45+
1. Open your Umbraco project in Visual Studio.
46+
2. Go to **Tools** -> **NuGet Package Manager** -> **Manage NuGet Packages for Solution...**.
47+
3. Browse for **Umbraco.TheStarterKit**.
48+
4. Select the appropriate version from the Version drop-down depending on the Umbraco version you are using.
49+
5. Click **Install**.
50+
6. Open the **.csproj** file to make sure the package reference is added:
51+
52+
```xml
53+
<ItemGroup>
54+
<PackageReference Include="Umbraco.TheStarterKit" Version="xx.x.x" />
55+
</ItemGroup>
56+
```
57+
58+
## Summary
59+
60+
You now have a fully functional Umbraco site with demo content, templates, and structure to explore. Use this setup as the foundation for the upcoming lessons in this Starter Kit tutorial.
61+
62+
[Back to Lessons](./)

13/umbraco-cms/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,7 @@
433433
* [Creating a Backoffice Tour](tutorials/creating-a-backoffice-tour.md)
434434
* [Creating Custom Database Tables with Entity Framework](tutorials/getting-started-with-entity-framework-core.md)
435435
* [The Starter Kit](tutorials/starter-kit/README.md)
436+
* [Install the Starter Kit](tutorials/starter-kit/install-the-starter-kit.md)
436437
* [Lessons](tutorials/starter-kit/lessons/README.md)
437438
* [Customize the Starter Kit](tutorials/starter-kit/lessons/1-customize-the-starter-kit.md)
438439
* [Add a Blog Post Publication Date](tutorials/starter-kit/lessons/2-add-a-blog-post-publication-date/README.md)
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Install the Starter Kit
2+
3+
Installing the Starter Kit provides a pre-built set of templates, content types, and demo content to explore or kickstart your Umbraco project.
4+
5+
## Outcome
6+
7+
You’ll have the Umbraco Starter Kit installed in your local project, ready to explore in the backoffice. This setup adds example content and templates, perfect for learning or quick prototyping.
8+
9+
## Steps
10+
11+
You can install the Starter Kit in two ways, depending on your preference:
12+
13+
* [Option 1: Install via .NET CLI](#option-1-install-via-net-cli)
14+
* [Option 2: Install via Visual Studio](#option-2-install-via-visual-studio)
15+
16+
### Option 1: Install via .NET CLI
17+
18+
To install the Starter Kit via the .Net CLI, follow these steps:
19+
20+
1. Open a terminal in your Umbraco project folder.
21+
2. Run the following command to add the Starter Kit package:
22+
23+
```bash
24+
dotnet add package Umbraco.TheStarterKit
25+
```
26+
27+
3. Build the project:
28+
29+
```bash
30+
dotnet build
31+
```
32+
33+
4. Run the project:
34+
35+
```bash
36+
dotnet run
37+
```
38+
39+
5. Go to `https://localhost:xxxx/` to view the Starter Kit content.
40+
41+
### Option 2: Install via Visual Studio
42+
43+
To install the starter Kit via Visual Studio, follow these steps:
44+
45+
1. Open your Umbraco project in Visual Studio.
46+
2. Go to **Tools** -> **NuGet Package Manager** -> **Manage NuGet Packages for Solution...**.
47+
3. Browse for **Umbraco.TheStarterKit**.
48+
4. Select the appropriate version from the Version drop-down depending on the Umbraco version you are using.
49+
5. Click **Install**.
50+
6. Open the **.csproj** file to make sure the package reference is added:
51+
52+
```xml
53+
<ItemGroup>
54+
<PackageReference Include="Umbraco.TheStarterKit" Version="xx.x.x" />
55+
</ItemGroup>
56+
```
57+
58+
## Summary
59+
60+
You now have a fully functional Umbraco site with demo content, templates, and structure to explore. Use this setup as the foundation for the upcoming lessons in this Starter Kit tutorial.
61+
62+
[Back to Lessons](./)

13/umbraco-deploy/test-the-release-candidate.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

13/umbraco-workflow/release-notes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ Check the [Version Specific Upgrade Notes](upgrading/version-specific.md) articl
1717

1818
This section contains the release notes for Umbraco Workflow 13 including all changes for this version.
1919

20+
### 13.4.3 (https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.4.3) (May 29 2025)
21+
* Improves task summary display in notification emails [#94](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/94)
22+
2023
### 13.4.2 (April 2 2025)
2124
* Improves empty searching in Advanced Search
2225
* Fixes an issue in Offline Approval where cultures were not always cased consistently

14/umbraco-cms/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@
429429
* [Add Microsoft Entra ID authentication (Members)](tutorials/add-microsoft-entra-id-authentication.md)
430430
* [Creating Custom Database Tables with Entity Framework](tutorials/getting-started-with-entity-framework-core.md)
431431
* [The Starter Kit](tutorials/starter-kit/README.md)
432+
* [Install the Starter Kit](tutorials/starter-kit/install-the-starter-kit.md)
432433
* [Lessons](tutorials/starter-kit/lessons/README.md)
433434
* [Customize the Starter Kit](tutorials/starter-kit/lessons/1-customize-the-starter-kit.md)
434435
* [Add a Blog Post Publication Date](tutorials/starter-kit/lessons/2-add-a-blog-post-publication-date/README.md)
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Install the Starter Kit
2+
3+
Installing the Starter Kit provides a pre-built set of templates, content types, and demo content to explore or kickstart your Umbraco project.
4+
5+
## Outcome
6+
7+
You’ll have the Umbraco Starter Kit installed in your local project, ready to explore in the backoffice. This setup adds example content and templates, perfect for learning or quick prototyping.
8+
9+
## Steps
10+
11+
You can install the Starter Kit in two ways, depending on your preference:
12+
13+
* [Option 1: Install via .NET CLI](#option-1-install-via-net-cli)
14+
* [Option 2: Install via Visual Studio](#option-2-install-via-visual-studio)
15+
16+
### Option 1: Install via .NET CLI
17+
18+
To install the Starter Kit via the .Net CLI, follow these steps:
19+
20+
1. Open a terminal in your Umbraco project folder.
21+
2. Run the following command to add the Starter Kit package:
22+
23+
```bash
24+
dotnet add package Umbraco.TheStarterKit
25+
```
26+
27+
3. Build the project:
28+
29+
```bash
30+
dotnet build
31+
```
32+
33+
4. Run the project:
34+
35+
```bash
36+
dotnet run
37+
```
38+
39+
5. Go to `https://localhost:xxxx/` to view the Starter Kit content.
40+
41+
### Option 2: Install via Visual Studio
42+
43+
To install the starter Kit via Visual Studio, follow these steps:
44+
45+
1. Open your Umbraco project in Visual Studio.
46+
2. Go to **Tools** -> **NuGet Package Manager** -> **Manage NuGet Packages for Solution...**.
47+
3. Browse for **Umbraco.TheStarterKit**.
48+
4. Select the appropriate version from the Version drop-down depending on the Umbraco version you are using.
49+
5. Click **Install**.
50+
6. Open the **.csproj** file to make sure the package reference is added:
51+
52+
```xml
53+
<ItemGroup>
54+
<PackageReference Include="Umbraco.TheStarterKit" Version="xx.x.x" />
55+
</ItemGroup>
56+
```
57+
58+
## Summary
59+
60+
You now have a fully functional Umbraco site with demo content, templates, and structure to explore. Use this setup as the foundation for the upcoming lessons in this Starter Kit tutorial.
61+
62+
[Back to Lessons](./)

14/umbraco-deploy/test-the-release-candidate.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)