├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── bug-report-feature-request.md ├── config │ └── labels.yml ├── issue-label-bot.yaml └── workflows │ ├── add-labels.yml │ └── ci.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── action.yml ├── jest.config.js ├── lib ├── Tests │ └── azureAppServiceSettings.test.js ├── Utils.js └── main.js ├── package.json ├── src ├── Tests │ └── azureAppServiceSettings.test.ts ├── Utils.ts └── main.ts ├── tsconfig.json └── webapp.svg /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/.github/ISSUE_TEMPLATE/bug-report-feature-request.md -------------------------------------------------------------------------------- /.github/config/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/.github/config/labels.yml -------------------------------------------------------------------------------- /.github/issue-label-bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/.github/issue-label-bot.yaml -------------------------------------------------------------------------------- /.github/workflows/add-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/.github/workflows/add-labels.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/action.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/Tests/azureAppServiceSettings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/lib/Tests/azureAppServiceSettings.test.js -------------------------------------------------------------------------------- /lib/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/lib/Utils.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/package.json -------------------------------------------------------------------------------- /src/Tests/azureAppServiceSettings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/src/Tests/azureAppServiceSettings.test.ts -------------------------------------------------------------------------------- /src/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/src/Utils.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/appservice-settings/HEAD/webapp.svg --------------------------------------------------------------------------------