Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/megaads-vn/mega-schedule
Scheduler service to send HTTP request
https://github.com/megaads-vn/mega-schedule
Last synced: 10 days ago
JSON representation
Scheduler service to send HTTP request
- Host: GitHub
- URL: https://github.com/megaads-vn/mega-schedule
- Owner: megaads-vn
- Created: 2016-08-04T04:04:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-04T02:29:57.000Z (about 1 month ago)
- Last Synced: 2024-12-04T03:24:08.163Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 604 KB
- Stars: 2
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mega-schedule
scheduler for MegaAds
##Usage
Example config in schedule.js
```javascript
module.exports = [
{rule: '1 * * * * *', url: 'http://my-website/service/product/suggestions'},
{rule: '2 * * * * *', url: 'http://my-website/service/crm/cron-tickets'},
{rule: '3 * * * * *', url: 'http://my-website/service/inoutput/cron-delivery-time-shipping'},
{rule: '4 * * * * *', url: 'http://my-website/service/forecast/buildreport'},
{rule: '5 * * * * *', url: 'http://my-website/service/inoutput/cron-delivery'},
{rule: '* /2 * * * *', url: 'http://my-website/service/forecast/cronReport'}
];
```