timedTasks



Specifies an array of processes to run on a timed basis. For each object in the array, you should provide the following:

  • task - the Profound.js script to run

  • startDelay - the delay (in minutes) after the server starts to run the task for the first time

  • interval - the interval (in minutes) between each subsequent run of the task

Sample Configuration
"timedTasks": [ { "task": "mytask.js", "startDelay": 1, "interval": 5 } ]