In this document (Timer trigger for Azure Functions) the example they give executes the function every five minutes, starting with the minutes that end in 5 or 0. That's fine, but unless I'm missing something, this document does not explain the syntax of the trigger and how I can customize it.
public static void Run([TimerTrigger("0 */5 * * * *")]TimerInfo myTimer, TraceWriter log)
{
....
}
For testing purposes on my localhost, this is really annoying to have wait until my clock time is a minute that ends in 5 or 0. I just want the function to execute immediately when run, and then again every five minutes after that. How would I modify this syntax accordingly?