├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── python-app.yml ├── .gitignore ├── CONTRIBUTING.MD ├── LICENSE.md ├── README.md ├── images └── pipeline.png └── web-app ├── requirements.txt ├── requirements_dev.txt ├── src └── app.py └── tests ├── conftest.py └── test_integration.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/README.md -------------------------------------------------------------------------------- /images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/images/pipeline.png -------------------------------------------------------------------------------- /web-app/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | flask -------------------------------------------------------------------------------- /web-app/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/web-app/requirements_dev.txt -------------------------------------------------------------------------------- /web-app/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/web-app/src/app.py -------------------------------------------------------------------------------- /web-app/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/web-app/tests/conftest.py -------------------------------------------------------------------------------- /web-app/tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-pipelines-variable-templates/HEAD/web-app/tests/test_integration.py --------------------------------------------------------------------------------