Skip to content
Auto
English

Install and create an application

Terminal window
dotnet new install Trykatch.Templates

Generate a complete .NET 10 backend and React workspace with your product name:

Terminal window
dotnet new trykatch -n Horizon
cd Horizon

Names containing dots and hyphens are normalized for C# namespaces, directories, container names, and npm packages.

React is included by default. Generate a backend-only solution only when that is intentional:

Terminal window
dotnet new trykatch -n Horizon --ui none

Optional free modules are disabled by default:

Terminal window
dotnet new trykatch -n Horizon \
--email true \
--storage true \
--documents true \
--images true

The package uses the standard .NET template engine. Rider can install the .nupkg from New Solution → More Templates → Install Template. Visual Studio discovers installed SDK templates in Create a new project after the package is installed; search for Trykatch.