Updates for mmucklo/queue-bundle version 6

This commit is contained in:
Matthew J. Mucklo
2020-03-25 22:01:56 -07:00
parent e2adce60e8
commit 7f12ffcfa9
3 changed files with 42 additions and 0 deletions
@@ -0,0 +1,2 @@
dtc_queue:
resource: '@DtcQueueBundle/Resources/config/routing.yml'
+11
View File
@@ -0,0 +1,11 @@
{
"bundles": {
"Dtc\\QueueBundle\\DtcQueueBundle": ["all"]
},
"copy-from-package": {
"Resources/config/dtc_queue.yaml": "%CONFIG_DIR%/packages/dtc_queue.yaml"
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
}
+29
View File
@@ -0,0 +1,29 @@
<bg=blue;fg=white> </>
<bg=blue;fg=white> What's next? </>
<bg=blue;fg=white> </>
Please update config/packages/dtc_queue.yaml:
# config/packages/dtc_queue.yaml
dtc_queue:
manager:
# This parameter is required and should typically be set to one of:
# [odm|orm|beanstalkd|rabbit_mq|redis]
job: orm
# ...
For a full list of configuration options, see:
* https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/full-configuration.md
If you use the "orm" job manager, you'll want to create a migration or update the schema on your database manually. For more info see:
* https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/symfony4-5.md
For admin, make sure twig-pack or twig-bundle + twig is installed.
On older versions of Symfony, the following might be necessary:
# config/packages/framework.yaml
framework:
# ...
templating:
engines: ['twig']