https://github.com/tyler36/ddev-laravel-queue
Start a Laravel queue worker automatically in DDEV
https://github.com/tyler36/ddev-laravel-queue
ddev ddev-get laravel laravel-queue
Last synced: about 1 year ago
JSON representation
Start a Laravel queue worker automatically in DDEV
- Host: GitHub
- URL: https://github.com/tyler36/ddev-laravel-queue
- Owner: tyler36
- License: apache-2.0
- Created: 2022-06-07T03:23:55.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-06T04:36:48.000Z (over 1 year ago)
- Last Synced: 2025-03-29T16:22:42.347Z (about 1 year ago)
- Topics: ddev, ddev-get, laravel, laravel-queue
- Language: Shell
- Homepage:
- Size: 105 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tyler36/ddev-laravel-queue
[](https://github.com/tyler36/ddev-laravel-queue/actions/workflows/tests.yml) 
- [Introduction](#introduction)
- [Getting Started](#getting-started)
- [What does this add-on do and add?](#what-does-this-add-on-do-and-add)
## Introduction
This add-on allows you to start a Laravel queue worker through the DDEV web service. See [offical Queues documentation](https://laravel.com/docs/9.x/queues) for more details.
## Getting Started
This add-on requires DDEV v1.19.3 or higher.
- Install the DDEV laravel worker add-on:
For DDEV v1.23.5 or above run
```shell
ddev add-on get tyler36/ddev-laravel-queue
```
For earlier versions of DDEV run
```shell
ddev get tyler36/ddev-laravel-queue
```
Then restart the project
```shell
ddev restart
```
## What does this add-on do and add?
1. Checks to make sure the DDEV version is adequate.
2. Adds `.ddev/config.laravel-workers.yaml`, which starts the queue worker daemon.
**Contributed and maintained by [tyler36](https://github.com/tyler36)**