Skip to content

Instantly share code, notes, and snippets.

@ahmadawais
Last active May 21, 2018 18:58
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 ahmadawais/9e0b7a61e4b50c671a132547c5c148ae to your computer and use it in GitHub Desktop.
Save ahmadawais/9e0b7a61e4b50c671a132547c5c148ae to your computer and use it in GitHub Desktop.
Azure Function: JavaScript | HTTP-triggered functions.json
{
"disabled": false,
"bindings": [
{
"authLevel": "anonymous",
"type": "httpTrigger",
"direction": "in",
"name": "req"
},
{
"type": "http",
"direction": "out",
"name": "res"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment