.NET Templates
This is a batteries-included template for creating a dotnet application in Intility. It includes the boilerplate for setting up the most common services a dotnet app needs, and is aimed to get you up and running quickly.
While the template takes away a lot of the complexity of starting a new app, we still recommend you to read the documentation for the libraries and services included in the template. This will help you understand how to use them, and how to configure them to your needs. See Further Reading for links to the documentation of the libraries and services included in the template.
Available Templates
Intility Api (iwebapi)
Use this template when you need to:
- Build RESTful APIs that other services or applications will consume
- Create endpoints for frontend applications
- Develop microservices with HTTP communication
- Expose functionality through a web-based interface
Intility Worker (iworker)
Use this template when you need to:
- Process work asynchronously
- Create scheduled jobs or recurring tasks
- Implement message queue consumers
- Build services that don't require HTTP endpoints
- Develop data processing pipelines