2025-11-20 16:24:40 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Third Party Services
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
|
|
|
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
|
|
|
|
| location for this type of information, allowing packages to have
|
|
|
|
|
| a conventional file to locate the various service credentials.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'postmark' => [
|
|
|
|
|
'key' => env('POSTMARK_API_KEY'),
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'resend' => [
|
|
|
|
|
'key' => env('RESEND_API_KEY'),
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'ses' => [
|
|
|
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
|
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
|
|
|
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'slack' => [
|
|
|
|
|
'notifications' => [
|
|
|
|
|
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
|
|
|
|
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
|
2025-12-14 02:13:20 +09:00
|
|
|
'gemini' => [
|
|
|
|
|
'api_key' => env('GEMINI_API_KEY'),
|
|
|
|
|
'project_id' => env('GEMINI_PROJECT_ID', 'codebridge-chatbot'),
|
|
|
|
|
],
|
|
|
|
|
|
2025-12-16 01:56:49 +09:00
|
|
|
'claude' => [
|
|
|
|
|
'api_key' => env('CLAUDE_API_KEY'),
|
|
|
|
|
],
|
|
|
|
|
|
2025-12-16 15:07:56 +09:00
|
|
|
'google' => [
|
|
|
|
|
'credentials_path' => env('GOOGLE_APPLICATION_CREDENTIALS'),
|
|
|
|
|
'storage_bucket' => env('GOOGLE_STORAGE_BUCKET'),
|
|
|
|
|
],
|
|
|
|
|
|
2025-12-17 18:56:40 +09:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| SAM API Server
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| API 로그 재전송 시 사용할 API 서버 URL
|
|
|
|
|
| - 로컬 Docker: http://api:80
|
|
|
|
|
| - 개발 서버: https://api.codebridge-x.com
|
|
|
|
|
| - 운영 서버: https://api.sam.kr
|
|
|
|
|
*/
|
|
|
|
|
'api' => [
|
|
|
|
|
'base_url' => env('API_BASE_URL'),
|
|
|
|
|
'key' => env('FLOW_TESTER_API_KEY'),
|
2025-12-18 14:21:50 +09:00
|
|
|
'exchange_secret' => env('INTERNAL_EXCHANGE_SECRET'),
|
2025-12-17 18:56:40 +09:00
|
|
|
],
|
|
|
|
|
|
2025-11-20 16:24:40 +09:00
|
|
|
];
|