ABrizmohun

Results 3 comments of ABrizmohun

I've switched to [running the App Service from a Zip package for now](https://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) ```shell az webapp deployment source config-zip --id $AZURE_APPSERVICE_ID --src $PUBLISH_ZIP ```

I ended up forking this project and injecting `IServiceProvider` into `UIOMaticHelper`. Then in `GetRepository`, I resolve my `IUIOMaticRepository` from DI if it exists otherwise, it creates a new instance. ```csharp...

I had the same issue. I ended up using [sqlcmd ](https://github.com/microsoft/go-sqlcmd) to run the script instead. **The script has to be idempotent** ```tf resource "terraform_data" "db_changetracking" { depends_on = [azurerm_mssql_database.database,...