Add guest push notifications and queue alerts

This commit is contained in:
Codex Agent
2025-11-12 20:38:49 +01:00
parent 2c412e3764
commit 574aa47ce7
34 changed files with 1806 additions and 74 deletions

13
config/push.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
return [
'enabled' => (bool) env('PUSH_ENABLED', false),
'ttl' => (int) env('PUSH_TTL', 600),
'vapid' => [
'public_key' => env('PUSH_VAPID_PUBLIC_KEY'),
'private_key' => env('PUSH_VAPID_PRIVATE_KEY'),
'subject' => env('PUSH_VAPID_SUBJECT', env('APP_URL', 'mailto:support@example.com')),
],
];