Skip to content

Commit

Permalink
Basic func + orchestrator
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudify committed Jul 1, 2019
1 parent 1035fb6 commit f1e7ec9
Show file tree
Hide file tree
Showing 14 changed files with 3,683 additions and 45 deletions.
2 changes: 2 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# .prettierrc
parser: typescript
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"azureFunctions.projectLanguage": "TypeScript",
"azureFunctions.projectRuntime": "~2",
"debug.internalConsoleOptions": "neverOpen",
"azureFunctions.preDeployTask": "npm prune"
"azureFunctions.preDeployTask": "npm prune",
"editor.formatOnSave": true
}
25 changes: 25 additions & 0 deletions CreateMessage/function.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"bindings": [
{
"authLevel": "function",
"name": "req",
"type": "httpTrigger",
"direction": "in",
"route": "{*segments}",
"methods": [
"post"
]
},
{
"name": "res",
"type": "http",
"direction": "out"
},
{
"name": "starter",
"type": "orchestrationClient",
"direction": "in"
}
],
"scriptFile": "../dist/CreateMessage/index.js"
}
Loading

0 comments on commit f1e7ec9

Please sign in to comment.