Sections in Azure App configuration as in appsettings.json

Do you have some Application settings in appsettings.json for App Service (or Azure Function) structured in sections? And do you know how to set up same structure as Application settings in Azure?

It’s easy – just write Application settings Key in format Section:MyAttribute

for appsettings.json:

{
  "myGreatApi": {
    "baseUrl": "https://localhost:7071/api/",
    "version": 2,
  }
}

will Application settings look like:

myGreatApi:baseUrl
myGreatApi:version

Running Azure Functions in Docker container – crashes on production

One day I have deployed my Azure Function app into container to production server (.NET Core on Linux). And app started to fail after few minutes, without any reason, with exit code 137. This post describes how I debugged the problem – to my suprise, it was caused by .NET Garbage Collector.

Celý příspěvek Running Azure Functions in Docker container – crashes on production

Running Azure Functions on your infrastructure

With Azure Functions, you don’t need to care how to run your serverless functions. But what to do, if you want to care and run it by yourself? This post describes how to run your Azure Functions application on own infrastructure with Docker.

Celý příspěvek Running Azure Functions on your infrastructure

Cestování po USA – cesta a první dny

Letos jsem byl pozván na konferenci Build 2015, která se koná v San Franciscu. Řekl jsem si, že tohoto pozvání zneužiji, udělám si delší dovolenou (3 týdny) a procestuju kus USA, co jsem vždycky chtěl. Vymysleli jsme si trasu, takže jsme přilétli do Los Angeles, pokračujeme přes Las Vegas, Grand Canyon, národní parky a zakončíme v San Franciscu.

Celý příspěvek Cestování po USA – cesta a první dny