Initial work

This commit is contained in:
2025-08-30 16:11:06 +02:00
parent 4e5f154492
commit 774d1cf45f
41 changed files with 1217 additions and 281 deletions

View File

@@ -59,7 +59,7 @@ return [
],
'single' => [
'driver' => 'single',
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,

8
config/scheduler.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
return [
'mattermost' => [
'server_url' => env('MATTERMOST_SERVER_URL', 'https://chat.example.com'),
'access_token' => env('MATTERMOST_ACCESS_TOKEN', 'your_access_token'),
]
];