Jolie on Azure Functions
Hi all. Some weeks ago Azure Functions' team released (as a preview) custom handlers . From the official doc: Custom handlers are best suited for situations where you want to: Implement a function app in a language that's not officially supported . Implement a function app in a language version or runtime not supported by default. Provide more granular control over the function app execution environment. I think this is a really powerful feature and you can actually find a lot of articles showing how to leverage it to write functions in Go, PHP, etc Now I'm going to add yet another programming language to the list: Jolie . Again, from the documentation: To implement a custom handler, you need the following aspects to your application: A host.json file at the root of your app A function.json file for each function (inside a folder that matches the function name) A command, script, or executable, which runs a web server In addition, you have to supply a