azurite

How to run Timer-triggered Azure Functions locally on Mac?

夙愿已清 提交于 2020-12-15 04:30:17
问题 I want to execute a timer-triggered function in my local development environment (Node, OS X) but it seems to require some changes to the HTTP-triggered functions setup I have. Here's the code related to the timer function so far: /cron-job/function.json defines a timer input binding scheduled to run every minute. It also has a reference to the code entry point (compiled from Typescript): { "bindings": [ { "type": "timerTrigger", "direction": "in", "name": "timer", "schedule": "0 */1 * * * *"