Deploy Ladill Queue / deploy (push) Successful in 56s
Phases 1–6: tickets, counters, displays, appointments, workflows, rules, analytics, reports, feedback, admin, device API, and Gitea deploy workflow for queue.ladill.com. Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
865 B
PHP
31 lines
865 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Third Party Services
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
'ladill_sso' => [
|
|
'issuer' => 'https://'.config('app.auth_domain'),
|
|
'client_id' => env('LADILL_SSO_CLIENT_ID'),
|
|
'client_secret' => env('LADILL_SSO_CLIENT_SECRET'),
|
|
'redirect' => rtrim((string) env('APP_URL', 'https://queue.ladill.com'), '/').'/sso/callback',
|
|
],
|
|
|
|
'ladill_identity' => [
|
|
'url' => 'https://'.config('app.auth_domain'),
|
|
'key' => env('IDENTITY_API_KEY_QUEUE'),
|
|
],
|
|
|
|
'slack' => [
|
|
'notifications' => [
|
|
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
|
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
|
],
|
|
],
|
|
|
|
];
|