Skip to content

Commit c8e41bc

Browse files
committed
Merge branch 'main' into new/member-partial-cache
2 parents 14f0e0e + 944cc47 commit c8e41bc

File tree

1,455 files changed

+23040
-7115
lines changed

Some content is hidden

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

1,455 files changed

+23040
-7115
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)

10/umbraco-cms/fundamentals/setup/install/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,17 @@ The fastest way to get the latest version of Umbraco up and running is using the
1212
2. Install the Umbraco templates:
1313

1414
```bash
15-
dotnet new install Umbraco.Templates::10.xx
15+
dotnet new install Umbraco.Templates::10.*
16+
```
17+
18+
{% hint style="info" %}
19+
20+
Replace `10.*` with the specific version you want to install.
21+
22+
Example:
23+
24+
```bash
25+
dotnet new install Umbraco.Templates::10.8.10
1626
```
1727

1828
3. Create a new project:

10/umbraco-cms/fundamentals/setup/install/install-umbraco-with-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Video tutorial
1212

1313
1. Install the latest [.NET SDK](https://dotnet.microsoft.com/download).
1414
2. Run `dotnet new install Umbraco.Templates` to install the project templates.\
15-
&#xNAN;_The solution is packaged up into the NuGet package_ [_Umbraco.Templates_](https://www.nuget.org/packages/Umbraco.Templates) _and can be installed into the dotnet CLI_.
15+
_The solution is packaged up into the NuGet package_ [_Umbraco.Templates_](https://www.nuget.org/packages/Umbraco.Templates) _and can be installed into the dotnet CLI_.
1616

1717
> Once that is complete, you can see that Umbraco was added to the list of available projects types by running `dotnet new --list`:
1818

10/umbraco-cms/fundamentals/setup/upgrading/version-specific/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ You can find a list of all the released Umbraco versions on [Our Umbraco](https:
148148

149149
## Find your upgrade path
150150

151-
Are you looking to upgrade an Umbraco Cloud project from 9 to 10? Follow the guide made for [Upgrading your project from Umbraco 9 to 10](https://docs.umbraco.com/umbraco-cloud/product-upgrades/major-upgrades) instead, as it requires a few steps specific to Umbraco Cloud.
151+
Are you looking to upgrade an Umbraco Cloud project from 9 to 10? Follow the guide [Upgrading your project from Umbraco 9 to 10](https://docs.umbraco.com/umbraco-cloud/optimize-and-maintain-your-site/manage-product-upgrades/product-upgrades/major-upgrades) instead, as it requires a few steps specific to Umbraco Cloud.
152152

153153
<details>
154154

10/umbraco-cms/reference/configuration/contentsettings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following snippet will give an overview of the keys and values in the conten
1313
"KeepAllVersionsNewerThanDays": 7,
1414
"KeepLatestVersionPerDayForDays": 90
1515
},
16-
"AllowEditInvariantFromNonDefault": true,
16+
"AllowEditInvariantFromNonDefault": false,
1717
"AllowedUploadFiles": [],
1818
"AllowedMediaHosts": [],
1919
"DisableDeleteWhenReferenced": false,
@@ -60,9 +60,9 @@ In the root level section, that is those without a seperate sub section like Ima
6060

6161
Invariant properties are properties on a multilingual site that are not varied by culture. This means that they share the same value across all languages added to the website.
6262

63-
When the setting is set to `false` the invariant properties that are shared between all languages can only be edited from the default language. This means you need access to the default language, in order to edit the property.
63+
When the setting is set to `false` (default) the invariant properties that are shared between all languages can only be edited from the default language. This means you need access to the default language, in order to edit the property.
6464

65-
When set to `true` (default) the invariant properties will need to be unlocked before they can be edited. The lock exists in order to make it clear that this change will affect more languages.
65+
When set to `true` the invariant properties will need to be unlocked before they can be edited. The lock exists in order to make it clear that this change will affect more languages.
6666

6767
### Allowed upload files
6868

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](./)

10/umbraco-commerce/.gitbook.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ root: ./
55
summary: SUMMARY.md
66

77
redirects:
8-
getting-started/installation/README: installation/install.md
9-
getting-started/licensing-model: installation/licensing-model.md
10-
getting-started/upgrading/README: upgrading/upgrade.md
11-
getting-started/upgrading/version-specific-upgrades: upgrading/version-specific-upgrades.md
12-
how-to-guides/migrate-from-vendr-to-umbraco-commerce/migrate-custom-payment-providers: upgrading/migrate-from-vendr-to-umbraco-commerce/migrate-custom-payment-providers.md
13-
how-to-guides/migrate-from-vendr-to-umbraco-commerce/migrate-umbraco-commerce-checkout: upgrading/migrate-from-vendr-to-umbraco-commerce/migrate-umbraco-commerce-checkout.md
14-
how-to-guides/migrate-from-vendr-to-umbraco-commerce/README: upgrading/migrate-from-vendr-to-umbraco-commerce/README.md
8+
getting-started/installation/README: installation/install.md
9+
getting-started/licensing-model: installation/licensing-model.md
10+
getting-started/upgrading/README: upgrading/upgrade.md
11+
getting-started/upgrading/version-specific-upgrades: upgrading/version-specific-upgrades.md
12+
how-to-guides/migrate-from-vendr-to-umbraco-commerce/migrate-custom-payment-providers: upgrading/migrate-from-vendr-to-umbraco-commerce/migrate-custom-payment-providers.md
13+
how-to-guides/migrate-from-vendr-to-umbraco-commerce/migrate-umbraco-commerce-checkout: upgrading/migrate-from-vendr-to-umbraco-commerce/migrate-umbraco-commerce-checkout.md
14+
how-to-guides/migrate-from-vendr-to-umbraco-commerce/README: upgrading/migrate-from-vendr-to-umbraco-commerce/README.md

10/umbraco-deploy/.gitbook.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ root: ./
55
summary: SUMMARY.md
66

77
redirects:
8-
getting-started/install-configure: installation/install-configure.md
9-
the-licensing-model: installation/the-licensing-model.md
10-
deploy-settings: getting-started/deploy-settings.md
11-
extending: getting-started/extending.md
12-
get-started-with-deploy: getting-started/get-started-with-deploy.md
13-
handling-cache-refresher-notifications: getting-started/handling-cache-refresher-notifications.md
8+
getting-started/install-configure: installation/install-configure.md
9+
the-licensing-model: installation/the-licensing-model.md
10+
deploy-settings: getting-started/deploy-settings.md
11+
extending: getting-started/extending.md
12+
get-started-with-deploy: getting-started/get-started-with-deploy.md
13+
handling-cache-refresher-notifications: getting-started/handling-cache-refresher-notifications.md
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)