This is a fork of [`serverless-offline-schedule`](https://github.com/Meemaw/serverless-offline-schedule) as that project is no longer maintained.
npm install @ezweave/serverless-offline-scheduleThis is a fork of serverless-offline-schedule as that project is no longer maintained.





npm install --save-dev serverless-offline-schedule
Then in serverless.yml add following entry to the plugins array: serverless-offline-schedule
``yml`
plugins:
- serverless-offline-schedule
#### Standalone process
`sh`
λ → sls schedule
Serverless: Starting serverless-offline-schedule in standalone process. Press CTRL+C to stop.
Serverless: Scheduling [schedule-function] cron: [/1 *] input: {"scheduler":"1-minute"}
...
Serverless: Succesfully invoked scheduled function: [my-function]
#### Part of serverless-offline
serverless-offline-schedule will automatically hook into serverless-offline start command hook.
`sh``
λ → sls offline
...
Serverless: Scheduling [schedule-function] cron: [/1 *] input: {"scheduler":"1-minute"}
...
Serverless: Succesfully invoked scheduled function: [my-function]