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'),
|
2026-02-11 21:04:13 +09:00
|
|
|
'location' => env('GOOGLE_STT_LOCATION', 'asia-southeast1'),
|
2025-12-16 15:07:56 +09:00
|
|
|
],
|
|
|
|
|
|
2026-01-22 18:58:39 +09:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 바로빌 API
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 바로빌 SOAP 웹서비스 연동 설정
|
2026-01-23 10:50:46 +09:00
|
|
|
| - cert_key_test: 테스트 환경용 CERTKEY
|
|
|
|
|
| - cert_key_prod: 운영 환경용 CERTKEY
|
2026-01-22 18:58:39 +09:00
|
|
|
| - corp_num: 파트너 사업자번호 (하이픈 제외)
|
2026-01-23 10:50:46 +09:00
|
|
|
| - test_mode: 테스트 환경 사용 여부 (true: 테스트, false: 운영)
|
2026-01-22 18:58:39 +09:00
|
|
|
|
|
|
|
|
|
| @see https://dev.barobill.co.kr/
|
|
|
|
|
*/
|
|
|
|
|
'barobill' => [
|
2026-01-23 10:50:46 +09:00
|
|
|
'cert_key_test' => env('BAROBILL_CERT_KEY_TEST', ''),
|
|
|
|
|
'cert_key_prod' => env('BAROBILL_CERT_KEY_PROD', ''),
|
2026-01-22 18:58:39 +09:00
|
|
|
'corp_num' => env('BAROBILL_CORP_NUM', ''),
|
2026-01-23 10:50:46 +09:00
|
|
|
'test_mode' => env('BAROBILL_TEST_MODE', true),
|
2026-01-22 18:58:39 +09:00
|
|
|
],
|
|
|
|
|
|
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-12-20 13:43:13 +09:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| DEV Site (React Frontend)
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| MNG → DEV 자동 로그인 시 사용할 DEV 사이트 URL
|
|
|
|
|
| - 로컬: https://dev.sam.kr
|
|
|
|
|
| - 개발: https://dev.codebridge-x.com
|
|
|
|
|
*/
|
|
|
|
|
'dev' => [
|
|
|
|
|
'app_url' => env('DEV_APP_URL', 'https://dev.sam.kr'),
|
|
|
|
|
],
|
|
|
|
|
|
2025-11-20 16:24:40 +09:00
|
|
|
];
|