├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── afun10 ├── README.md ├── demos.md ├── deployment.md └── presentations.md ├── afun20 ├── README.md ├── demos.md ├── deployment.md └── presentations.md ├── afun30 ├── .vscode │ └── settings.json ├── 1 - html-docs-hello-world-twt-static │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── azure-portal.png │ │ ├── cdn.png │ │ └── twt-portal.png │ ├── index.html │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── 2 - cloudshell │ ├── aci.ps1 │ └── aci.sh ├── 3 - arm_template │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── LICENSE ├── README.md └── presentations.md ├── afun40 ├── README.md ├── demos.md ├── deployment.md └── presentations.md ├── afun50 ├── README.md ├── demos │ └── README.md ├── deployment.md └── presentations.md ├── afun60 ├── README.md ├── aks │ └── readme.md ├── demos │ └── readme.md └── presentations.md ├── afun70 ├── README.md ├── demos.md ├── deployment.md └── presentations.md ├── afun80 ├── README.md ├── demos.md ├── deployment.md └── presentations.md ├── afun90 ├── README.md ├── demos.md ├── deployment.md └── presentations.md └── afun95 ├── README.md ├── demos ├── assets │ ├── AddAzFunction.png │ ├── AddQuery.png │ ├── SelectHttpTrigger.png │ ├── addResponse.png │ ├── all-afun95-resources.png │ ├── azurelogicappurl.png │ ├── completedAzLogicApp.png │ ├── deployafun95.png │ └── functionUrl.png ├── functionapp-demo │ ├── .funcignore │ ├── SimpleHttpTrigger │ │ ├── function.json │ │ ├── index.js │ │ └── sample.dat │ ├── host.json │ ├── local.settings.json │ ├── package.json │ └── proxies.json └── readme.md ├── deployment ├── README.md ├── debugTools.azcli ├── deployAzure-afun95-demo3.json └── deployAzure.json └── presentations.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/SECURITY.md -------------------------------------------------------------------------------- /afun10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun10/README.md -------------------------------------------------------------------------------- /afun10/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun10/demos.md -------------------------------------------------------------------------------- /afun10/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun10/deployment.md -------------------------------------------------------------------------------- /afun10/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun10/presentations.md -------------------------------------------------------------------------------- /afun20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun20/README.md -------------------------------------------------------------------------------- /afun20/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun20/demos.md -------------------------------------------------------------------------------- /afun20/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun20/deployment.md -------------------------------------------------------------------------------- /afun20/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun20/presentations.md -------------------------------------------------------------------------------- /afun30/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/.vscode/settings.json -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/.gitignore -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/LICENSE -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/README.md -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/css/bootstrap.css -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/css/bootstrap.css.map -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/css/bootstrap.min.css -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/img/azure-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/img/azure-portal.png -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/img/cdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/img/cdn.png -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/img/twt-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/img/twt-portal.png -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/index.html -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/js/bootstrap.js -------------------------------------------------------------------------------- /afun30/1 - html-docs-hello-world-twt-static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/1 - html-docs-hello-world-twt-static/js/bootstrap.min.js -------------------------------------------------------------------------------- /afun30/2 - cloudshell/aci.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/2 - cloudshell/aci.ps1 -------------------------------------------------------------------------------- /afun30/2 - cloudshell/aci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/2 - cloudshell/aci.sh -------------------------------------------------------------------------------- /afun30/3 - arm_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/3 - arm_template/README.md -------------------------------------------------------------------------------- /afun30/3 - arm_template/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/3 - arm_template/azuredeploy.json -------------------------------------------------------------------------------- /afun30/3 - arm_template/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/3 - arm_template/azuredeploy.parameters.json -------------------------------------------------------------------------------- /afun30/3 - arm_template/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/3 - arm_template/metadata.json -------------------------------------------------------------------------------- /afun30/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/LICENSE -------------------------------------------------------------------------------- /afun30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/README.md -------------------------------------------------------------------------------- /afun30/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun30/presentations.md -------------------------------------------------------------------------------- /afun40/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun40/README.md -------------------------------------------------------------------------------- /afun40/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun40/demos.md -------------------------------------------------------------------------------- /afun40/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun40/deployment.md -------------------------------------------------------------------------------- /afun40/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun40/presentations.md -------------------------------------------------------------------------------- /afun50/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun50/README.md -------------------------------------------------------------------------------- /afun50/demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun50/demos/README.md -------------------------------------------------------------------------------- /afun50/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun50/deployment.md -------------------------------------------------------------------------------- /afun50/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun50/presentations.md -------------------------------------------------------------------------------- /afun60/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun60/README.md -------------------------------------------------------------------------------- /afun60/aks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun60/aks/readme.md -------------------------------------------------------------------------------- /afun60/demos/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun60/demos/readme.md -------------------------------------------------------------------------------- /afun60/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun60/presentations.md -------------------------------------------------------------------------------- /afun70/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun70/README.md -------------------------------------------------------------------------------- /afun70/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun70/demos.md -------------------------------------------------------------------------------- /afun70/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun70/deployment.md -------------------------------------------------------------------------------- /afun70/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun70/presentations.md -------------------------------------------------------------------------------- /afun80/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun80/README.md -------------------------------------------------------------------------------- /afun80/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun80/demos.md -------------------------------------------------------------------------------- /afun80/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun80/deployment.md -------------------------------------------------------------------------------- /afun80/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun80/presentations.md -------------------------------------------------------------------------------- /afun90/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun90/README.md -------------------------------------------------------------------------------- /afun90/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun90/demos.md -------------------------------------------------------------------------------- /afun90/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun90/deployment.md -------------------------------------------------------------------------------- /afun90/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun90/presentations.md -------------------------------------------------------------------------------- /afun95/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/README.md -------------------------------------------------------------------------------- /afun95/demos/assets/AddAzFunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/assets/AddAzFunction.png -------------------------------------------------------------------------------- /afun95/demos/assets/AddQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/assets/AddQuery.png -------------------------------------------------------------------------------- /afun95/demos/assets/SelectHttpTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/assets/SelectHttpTrigger.png -------------------------------------------------------------------------------- /afun95/demos/assets/addResponse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/assets/addResponse.png -------------------------------------------------------------------------------- /afun95/demos/assets/all-afun95-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/assets/all-afun95-resources.png -------------------------------------------------------------------------------- /afun95/demos/assets/azurelogicappurl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/assets/azurelogicappurl.png -------------------------------------------------------------------------------- /afun95/demos/assets/completedAzLogicApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/assets/completedAzLogicApp.png -------------------------------------------------------------------------------- /afun95/demos/assets/deployafun95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/assets/deployafun95.png -------------------------------------------------------------------------------- /afun95/demos/assets/functionUrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/assets/functionUrl.png -------------------------------------------------------------------------------- /afun95/demos/functionapp-demo/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/functionapp-demo/.funcignore -------------------------------------------------------------------------------- /afun95/demos/functionapp-demo/SimpleHttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/functionapp-demo/SimpleHttpTrigger/function.json -------------------------------------------------------------------------------- /afun95/demos/functionapp-demo/SimpleHttpTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/functionapp-demo/SimpleHttpTrigger/index.js -------------------------------------------------------------------------------- /afun95/demos/functionapp-demo/SimpleHttpTrigger/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ignite" 3 | } -------------------------------------------------------------------------------- /afun95/demos/functionapp-demo/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /afun95/demos/functionapp-demo/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/functionapp-demo/local.settings.json -------------------------------------------------------------------------------- /afun95/demos/functionapp-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/functionapp-demo/package.json -------------------------------------------------------------------------------- /afun95/demos/functionapp-demo/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/functionapp-demo/proxies.json -------------------------------------------------------------------------------- /afun95/demos/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/demos/readme.md -------------------------------------------------------------------------------- /afun95/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/deployment/README.md -------------------------------------------------------------------------------- /afun95/deployment/debugTools.azcli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/deployment/debugTools.azcli -------------------------------------------------------------------------------- /afun95/deployment/deployAzure-afun95-demo3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/deployment/deployAzure-afun95-demo3.json -------------------------------------------------------------------------------- /afun95/deployment/deployAzure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/deployment/deployAzure.json -------------------------------------------------------------------------------- /afun95/presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ignite-learning-paths-training-afun/HEAD/afun95/presentations.md --------------------------------------------------------------------------------