- 리스트/상세 페이지에 재전송 버튼 추가 - 인증 방식 선택: 토큰 직접 입력 / 사용자 선택(Sanctum 토큰 발급) - 환경별 API URL 변환 (API_BASE_URL 설정) - X-API-KEY 헤더 자동 추가 (FLOW_TESTER_API_KEY 사용) - 성공/실패 상태 배너 표시 - 세션에 토큰 저장하여 다음 재전송 시 자동 입력 - 재전송 성공 시 1초 후 페이지 새로고침 - 에러만 필터 옵션 추가 (4xx+5xx)
67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
<?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'),
|
|
],
|
|
],
|
|
|
|
'gemini' => [
|
|
'api_key' => env('GEMINI_API_KEY'),
|
|
'project_id' => env('GEMINI_PROJECT_ID', 'codebridge-chatbot'),
|
|
],
|
|
|
|
'claude' => [
|
|
'api_key' => env('CLAUDE_API_KEY'),
|
|
],
|
|
|
|
'google' => [
|
|
'credentials_path' => env('GOOGLE_APPLICATION_CREDENTIALS'),
|
|
'storage_bucket' => env('GOOGLE_STORAGE_BUCKET'),
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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'),
|
|
],
|
|
|
|
];
|