I have a nodejs file indexjs. How do I run it using azure functions. I mean I see this auto generated file I got from time tiggers but how do I directed to run the file.
like node index.js
This is the file I have
{
"bindings": [
{
"name": "myTimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 */5 * * * *"
}
]
}