Windows
Setting up jSunnyreports to run every 15 minutes on Windows is straightforward using the standard task scheduler available in Windows.
Open the “Task scheduler” in windows and select “Create Task”.
Then use the following information as a guideline.
Linux
Use crontab to create a scheduled task. This assumes you have installed jSunnyreports in ~/jsunnyreports and that jsunnyreports.sh is executable.
Open a terminal window and type the following command:
crontab -e
Then add the following line:
*/15 * * * * ~/jsunnyreports/jsunnyreports.sh
This will run jSunnyreports every 15 minutes.