mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 01:47:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			333 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			333 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| /**
 | |
|  * Cron config that gives you an opportunity
 | |
|  * to run scheduled jobs.
 | |
|  *
 | |
|  * The cron format consists of:
 | |
|  * [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK] [YEAR (optional)]
 | |
|  */
 | |
| 
 | |
| module.exports = {
 | |
| 
 | |
|   /**
 | |
|    * Simple example.
 | |
|    * Every monday at 1am.
 | |
|    */
 | |
| 
 | |
|   // '0 1 * * 1': () => {
 | |
|   //
 | |
|   // }
 | |
| };
 | 
