Skip to content

Develop

Matteo Gregoricchio edited this page May 11, 2024 · 5 revisions

TODO

// develop BE

// develop FE

Sample applications

WebApp

Serilog UI is configured in a ASP .NET template application, with the MongoDb data-provider.

Every time the application starts, the application creates and manages an ephemeral MongoDb database, that is disposed on application shutdown.

No setup is required.

WebApi

Serilog UI is configured in a .NET Web Api template application, with the Microsoft Sql Server provider and/or the Elastic Search provider.

To use the application, a Docker installation is required.

To use MS Sql Server, the application will launch and manage an hosted MsSql TestContainer itself, without further setup required.

To use Elastic Search, you need to create manually a Docker Elastic Search pod with the following command:

docker run -d --name elasticsearch --net elastic -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e "xpack.security.enabled=false" elasticsearch:8.13.0
Clone this wiki locally