php-censor/docs/en/workers/cron.md
Dmitry Khomutov 1139d28ddd Update docs
2017-01-09 23:58:44 +07:00

886 B

Run builds using cronjob

Running builds using cron is a quick and simple method of getting up and running with PHP Censor. It also removes the need for PHP Censor to be running all the time.

If you want a little more control over how PHP Censor runs, you may want to set up the daemon instead.

Setting up the Cron Job

You'll want to set up PHP Censor to run as a regular cronjob, so run crontab -e and enter the following:

SHELL=/bin/bash
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

* * * * * /path/to/php-censor/bin/console php-censor:run-builds

And for one running worker:

SHELL=/bin/bash
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

* * * * * flock -n /tmp/run-builds.lock --command '/path/to/php-censor/bin/console php-censor:run-builds'