Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created September 18, 2017 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/13175c98077bda10c3fef3e721ec1bbe to your computer and use it in GitHub Desktop.
Save justinyoo/13175c98077bda10c3fef3e721ec1bbe to your computer and use it in GitHub Desktop.
Azure Function Proxies for Mocking
{
"apiVersion": "2015-08-01",
"type": "Microsoft.Web/sites",
"name": "my-function-app",
"location": "[resourceGroup().location]",
"kind": "functionapp",
...
"resources": [
{
"apiVersion": "2015-08-01",
"type": "config",
"name": "appsettings",
...
"properties": {
...
// Add this key with this value to enable Azure Function Proxies.
"ROUTING_EXTENSION_VERSION": "~0.2"
}
},
...
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment