Skip to content

Commit 194f9c6

Browse files
Sofie Toft Kristensengitbook-bot
authored andcommitted
GITBOOK-3: How to test the RC
1 parent a46440a commit 194f9c6

File tree

4 files changed

+72
-29
lines changed

4 files changed

+72
-29
lines changed

15/umbraco-cms/README.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,14 @@ This version of the Umbraco CMS documentation is currently slimmed down to conta
1212
:bangbang: Due to the above, some links might reference the GitHub file instead of the GitBook article.
1313
{% endhint %}
1414

15+
{% hint style="success" %}
16+
**Do you want to test the Release candidate?**
17+
18+
Check out the [**Release Candidate Guide**](release-candidate-guide.md) to get started.
19+
{% endhint %}
20+
1521
Umbraco CMS is a flexible and editor-friendly Content Management System (CMS) that allows you to create beautiful and modern websites. Use the latest version of .NET, integrate with your favorite services, and help your customers launch a website tailored to their specific needs.
1622

1723
Learn more about Umbraco CMS and get an overview of the top features on [Umbraco.com](https://umbraco.com/products/umbraco-cms/).
1824

1925
<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-cover data-type="files"></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><strong>Fundamentals</strong></td><td>Learn the basics of working with Umbraco CMS. How to install and setup your first site is also included in this section.</td><td><a href=".gitbook/assets/rocket-hero.png">rocket-hero.png</a></td><td><a href="fundamentals/get-to-know-umbraco.md">get-to-know-umbraco.md</a></td></tr><tr><td><strong>Install Umbraco CMS</strong></td><td>Ready to get started with Umbraco? Head over to the Setup section to learn how to install Umbraco CMS.</td><td><a href=".gitbook/assets/docs-style-hero.png">docs-style-hero.png</a></td><td><a href="fundamentals/setup/install/">install</a></td></tr><tr><td><strong>Tutorials</strong></td><td>Find detailed step-by-step guides on everything from building a site from scratch to implementing a custom maintenance page.</td><td><a href=".gitbook/assets/reversed-heart-hero.png">reversed-heart-hero.png</a></td><td><a href="tutorials/overview.md">overview.md</a></td></tr></tbody></table>
20-
21-
## New articles for Umbraco 15
22-
23-
* [Tutorial: Extending the Help Menu](tutorials/extending-the-help-menu.md)
24-
25-
***
26-
27-
## Umbraco Training
28-
29-
Umbraco HQ offers a full-day training course covering the basic concepts and features needed for building an Umbraco CMS website. The course targets frontend and backend developers, designers, and technical users who want to build a website from scratch in Umbraco,
30-
31-
[Explore the Fundamentals Training Course](https://umbraco.com/training/course-details/fundamentals-details/) to learn more about the topics covered and how it can enhance your Umbraco development skills.

15/umbraco-cms/SUMMARY.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
# Table of contents
22

33
* [Umbraco CMS Documentation](README.md)
4-
* [Legacy Documentation](legacy-documentation/README.md)
5-
* [Umbraco 11 Documentation](https://github.com/umbraco/UmbracoDocs/tree/umbraco-eol-versions)
6-
* [Umbraco 8 Documentation](https://our.umbraco.com/documentation/)
7-
* [Umbraco 7 Documentation](https://our.umbraco.com/documentation/)
4+
* [Release Candidate Guide](release-candidate-guide.md)
85
* [Release Notes](https://our.umbraco.com/download/releases/)
9-
* [Contribute](https://docs.umbraco.com/welcome/contribute/)
10-
* [Sustainability Best Practices](https://docs.umbraco.com/sustainability-best-practices/)
116

127
## Fundamentals
138

15/umbraco-cms/legacy-documentation/README.md

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
description: >-
3+
Learn how to start testing the Release Candidate for the latest version of
4+
Umbraco CMS, and find information about new and updated documentation.
5+
---
6+
7+
# Release Candidate Guide
8+
9+
## How to test the Release Candidate
10+
11+
{% hint style="warning" %}
12+
To install the Umbraco 15 Release Candidate you need the latest [.NET SDK 9.0.0](https://dotnet.microsoft.com/en-us/download/dotnet/9.0).
13+
{% endhint %}
14+
15+
The[ release candidate is available on NuGet](https://www.nuget.org/packages/Umbraco.Cms/15.0.0-rc1).
16+
17+
1. Install the Umbraco dotnet template for the Release Candidate.
18+
19+
```
20+
dotnet new install Umbraco.Templates::15.0.0-rc*
21+
```
22+
23+
2. Create a new Umbraco project.
24+
25+
```
26+
dotnet new umbraco -n MyCustomUmbracoProject
27+
```
28+
29+
3. Navigate to the newly created folder.
30+
31+
```
32+
cd MyCustomUmbracoProject
33+
```
34+
35+
4. Build the project.
36+
37+
```
38+
dotnet build
39+
```
40+
41+
5. Run the project.
42+
43+
```
44+
dotnet run
45+
```
46+
47+
This will boot the project, and write the log to the console. The website is now running on your local machine and will be available on the ports written in the console.
48+
49+
{% hint style="info" %}
50+
Alternatively, you can install and run the Umbraco project using your favorite IDE (Integrated Development Environment).
51+
{% endhint %}
52+
53+
### What should you focus on when testing?
54+
55+
Read the [Release Candidate blog post](https://umbraco.com/blog/) to learn more about notable features and changes added to the upcoming version.
56+
57+
The blog post will mention if there are any specific features or workflows that the Umbraco HQ team needs feedback on.
58+
59+
## New and updated documentation
60+
61+
Here is a list of all the articles that are new to this version or have been updated.
62+
63+
### New articles
64+
65+
* [Tutorial: Extending the Help Menu](tutorials/extending-the-help-menu.md)

0 commit comments

Comments
 (0)