While it's possible to do this, it's unlikely to be a good idea. What are you trying to achieve?
a
attila_08563
01/08/2024, 2:57 PM
I would like to run background processes outside of Umbraco so that I can run expensive operations without slowing down the website or the backoffice.
j
Jason
01/08/2024, 3:04 PM
What sort of operations?
The main consideration is that it'll boot Umbraco off the same database as your site with every use so you need to treat it as a scaled/load-balanced instance.
With that in mind, you might as well scale your app itself in Azure and just use the same single codebase.
Jason
01/08/2024, 3:07 PM
Generally speaking, you're usually better off optimising your Umbraco app itself for handling such operations or handling them completely off-app by other means.