-
Notifications
You must be signed in to change notification settings - Fork 811
Added an article on how to install the starter kit #7088
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
15/umbraco-cms/tutorials/starter-kit/lessons/install-the-starter-kit.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,65 @@ | ||
| # Install the Starter Kit | ||
|
|
||
| Installing the Starter Kit provides a pre-built set of templates, content types, and demo content to explore or kickstart your Umbraco project. | ||
|
|
||
| ## Outcome | ||
|
|
||
| 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. | ||
|
|
||
| ## Steps | ||
|
|
||
| You can install the Starter Kit in two ways, depending on your preference: | ||
|
|
||
| * [Option 1: Install via .NET CLI](#option-1-install-via-net-cli) | ||
| * [Option 2: Install via Visual Studio](#option-2-install-via-visual-studio) | ||
|
|
||
| ### Option 1: Install via .NET CLI | ||
|
|
||
| To install the Starter Kit via the .Net CLI, follow these steps: | ||
|
|
||
| 1. Open a terminal in your Umbraco project folder. | ||
| 2. Run the following command to add the Starter Kit package: | ||
|
|
||
| ```bash | ||
| dotnet add package Umbraco.TheStarterKit | ||
| ``` | ||
|
|
||
| 3. Build the project: | ||
|
|
||
| ```bash | ||
| dotnet build | ||
| ``` | ||
|
|
||
| 4. Run the project: | ||
|
|
||
| ```bash | ||
| dotnet run | ||
| ``` | ||
|
|
||
| 5. Go to `https://localhost:xxxx/` to view the Starter Kit content. | ||
|
|
||
| ### Option 2: Install via Visual Studio | ||
|
|
||
| To install the starter Kit via Visual Studio, follow these steps: | ||
|
|
||
| 1. Open your Umbraco project in Visual Studio. | ||
| 2. Go to **Tools** -> **NuGet Package Manager** -> **Manage NuGet Packages for Solution...**. | ||
| 3. Browse for **Umbraco.TheStarterKit**. | ||
| 4. Select the appropriate version from the Version drop-down depending on the Umbraco version you are using. | ||
| 5. Click **Install**. | ||
| 6. Once the package is installed, open the **.csproj** file to make sure the package reference is added: | ||
eshanrnh marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ```xml | ||
| <ItemGroup> | ||
| <PackageReference Include="Umbraco.TheStarterKit" Version="xx.x.x" /> | ||
| </ItemGroup> | ||
| ``` | ||
|
|
||
| ## Summary | ||
|
|
||
| You now have a fully functional Umbraco site with demo content, templates, and structure to explore. Use this setup to: | ||
|
|
||
| * Learn how content and templates are structured | ||
| * Customize and expand it for your own project | ||
eshanrnh marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| [Back to Lessons](./) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.