Add CommandScheduler bundle recipe

This commit is contained in:
j.guyon
2018-02-09 15:36:23 +01:00
parent 454bb766a0
commit 415e03f4c4
3 changed files with 45 additions and 0 deletions
@@ -0,0 +1,34 @@
jmose_command_scheduler:
# Default directory where scheduler will write output files
# This default value assume that php bin/console is launched from project's root and that the directory is writable
# if log_path is set to false, logging to files is disabled at all
log_path: "%kernel.logs_dir%"
# This default value disables timeout checking (see monitoring), set to a numeric value (seconds) to enable it
lock_timeout: false
# receivers for reporting mails
monitor_mail: []
# set a custom subject for monitor mails (first placeholder will be replaced by the hostname, second by the date)
monitor_mail_subject: cronjob monitoring %s, %s
# to send "everything's all right" emails to receivers for reporting mails set this value to "true" (see monitoring)
send_ok: false
# Namespaces listed here won't be listed in the list
excluded_command_namespaces:
- _global
- scheduler
- server
- container
- config
- generate
- init
- router
- doctrine
- debug
# Doctrine manager
doctrine_manager: default
@@ -0,0 +1,3 @@
jmose_command_scheduler:
resource: "@JMoseCommandSchedulerBundle/Resources/config/routing.yml"
prefix: /
@@ -0,0 +1,8 @@
{
"bundles": {
"JMose\\CommandSchedulerBundle\\JMoseCommandSchedulerBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
}