neosrulez/neos-scheduler

There is no license information available for the latest version (1.0.0) of this package.

A package for Neos CMS to easily manage cron-jobs.

Installs: 153

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Language:JavaScript

Type:neos-package

1.0.0 2021-12-30 11:32 UTC

This package is not auto-updated.

Last update: 2024-04-19 21:45:23 UTC


README

NeosRulez.Neos.Scheduler adds a scheduler functionality to Neos CMS. Easily create recurring (cron jobs) or one-time scripts.

Scheduler

Installation

The NeosRulez.Neos.Scheduler is listed on packagist (https://packagist.org/packages/neosrulez/neos-scheduler) - therefore you don't have to include the package in your "repositories" entry any more.

Just run composer require neosrulez/neos-scheduler

Settings.yaml

NeosRulez:
  Neos:
    Scheduler:
      frequencyInput: false
      templatePathAndFilename: 'resource://NeosRulez.Neos.Scheduler/Private/Templates/Mail/Task.html'
      senderMail: 'noreply@foo.com'

Cron job

Create a cron job to be executed every minute ...

* * * * *     ./flow scheduler:execute >/dev/null 2>&1

Author