https://github.com/kentico/learningkit-core
Basic training website used to demonstrate the development of Kentico Xperience applications in ASP.NET Core
https://github.com/kentico/learningkit-core
asp-net-core kentico kentico-xperience
Last synced: about 1 year ago
JSON representation
Basic training website used to demonstrate the development of Kentico Xperience applications in ASP.NET Core
- Host: GitHub
- URL: https://github.com/kentico/learningkit-core
- Owner: Kentico
- License: mit
- Created: 2020-11-12T14:29:00.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-01-30T06:48:36.000Z (over 3 years ago)
- Last Synced: 2025-04-12T19:09:25.361Z (about 1 year ago)
- Topics: asp-net-core, kentico, kentico-xperience
- Language: C#
- Homepage: https://docs.xperience.io/display/13/Developing+Xperience+applications+using+ASP.NET+Core
- Size: 815 KB
- Stars: 4
- Watchers: 19
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**🛈 This repository is intended as a read-only source of information, and contributions by the general public are not expected.**
# LearningKit
LearningKit is a functional website for learning purposes. It demonstrates how to implement various Kentico Xperience features on MVC websites in the form of code snippets, which you can run if you connect the website to a Kentico Xperience database. See [Kentico Xperience sample sites](https://devnet.kentico.com/articles/kentico-xperience-sample-sites-and-their-differences) for a detailed description of this and other Xperience sample sites.
## Instructions for running the LearningKit project
1. [Install](https://docs.xperience.io/x/bAmRBg) Kentico Xperience in the ASP.NET Core development model. When choosing the installation type, select *New site*.
1. Set the **Presentation URL** of the new site to the URL where you plan to run the LearningKit project.
1. [Enable web farms](https://docs.xperience.io/x/Mw_RBg) in automatic mode.
1. Rename the `LearningKitCore\appsettings.json.template` file to `appsettings.json`.
1. Copy the `CMSConnectionString` connection string from the Xperience administration application's `web.config` file to the `LearningKitCore\appsettings.json` file.
``` json
"ConnectionStrings": {
"CMSConnectionString": ""
}
```
1. Copy the `CMSHashStringSalt` app setting from the Xperience administration application's `web.config` file to the `LearningKitCore\appsettings.json` file.
``` json
"CMSHashStringSalt": "",
```
1. Open the `LearningKitCore.sln` solution in Visual Studio and run the LearningKit web application.
## Accessing older versions of the repository
You can find older versions of the LearningKit project under the [Releases section](https://github.com/KenticoInternal/LearningKit-Mvc/releases) (open the corresponding commit for the required version and click **Browse files**).
Quick links:
- [LearningKit for Kentico 12 Service Pack](https://github.com/KenticoInternal/LearningKit-Mvc/releases/tag/2.0.0) (for ASP.NET MVC 5)
- [LearningKit for Kentico 12](https://github.com/KenticoInternal/LearningKit-Mvc/releases/tag/v1.0.0) (for ASP.NET MVC 5)