├── .deployment ├── .gitignore ├── Deploy-SonarQubeAzureAppService.ps1 ├── LICENSE ├── README.md ├── azuredeploy.json └── wwwroot ├── App_Data └── jobs │ └── triggered │ └── logs_cleanup │ ├── run.ps1 │ └── settings.job ├── HttpPlatformHandlerStartup.ps1 └── web.config /.deployment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/.deployment -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/.gitignore -------------------------------------------------------------------------------- /Deploy-SonarQubeAzureAppService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/Deploy-SonarQubeAzureAppService.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/README.md -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /wwwroot/App_Data/jobs/triggered/logs_cleanup/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/wwwroot/App_Data/jobs/triggered/logs_cleanup/run.ps1 -------------------------------------------------------------------------------- /wwwroot/App_Data/jobs/triggered/logs_cleanup/settings.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/wwwroot/App_Data/jobs/triggered/logs_cleanup/settings.job -------------------------------------------------------------------------------- /wwwroot/HttpPlatformHandlerStartup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/wwwroot/HttpPlatformHandlerStartup.ps1 -------------------------------------------------------------------------------- /wwwroot/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanderby/SonarQube-AzureAppService/HEAD/wwwroot/web.config --------------------------------------------------------------------------------