Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ APP_FAKER_LOCALE=en_US
APP_MAINTENANCE_DRIVER=file
# APP_MAINTENANCE_STORE=database

PHP_CLI_SERVER_WORKERS=4
# PHP_CLI_SERVER_WORKERS=4

BCRYPT_ROUNDS=12

Expand Down
6 changes: 5 additions & 1 deletion config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
| each backend supported by Laravel. You're also free to add more.
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis",
| "deferred", "failover", "null"
| "deferred", "background", "failover", "null"
|
*/

Expand Down Expand Up @@ -77,6 +77,10 @@
'driver' => 'deferred',
],

'background' => [
'driver' => 'background',
],

'failover' => [
'driver' => 'failover',
'connections' => [
Expand Down
4 changes: 2 additions & 2 deletions config/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
*/

'postmark' => [
'token' => env('POSTMARK_TOKEN'),
'key' => env('POSTMARK_API_KEY'),
],

'resend' => [
'key' => env('RESEND_KEY'),
'key' => env('RESEND_API_KEY'),
],

'ses' => [
Expand Down
Loading