chore: [env] .env.example 업데이트 및 .gitignore 정리

- .env.example을 SAM 프로젝트 실제 키 구조로 업데이트
- .gitignore에 !.env.example 예외 추가
- GCS_* 중복 키 제거, Gemini/Claude/Vertex 키 섹션 추가
This commit is contained in:
김보곤
2026-02-23 10:17:37 +09:00
parent 3ae3a1dcda
commit 240199af9d
51 changed files with 623 additions and 2726 deletions

View File

@@ -58,48 +58,4 @@
'exchange_secret' => env('INTERNAL_EXCHANGE_SECRET'),
],
/*
|--------------------------------------------------------------------------
| Claude AI
|--------------------------------------------------------------------------
*/
'claude' => [
'api_key' => env('CLAUDE_API_KEY'),
],
/*
|--------------------------------------------------------------------------
| Google Cloud (STT + GCS Storage)
|--------------------------------------------------------------------------
| Google Cloud 서비스 인증 및 음성인식(STT) 설정
*/
'google' => [
'credentials_path' => env('GOOGLE_APPLICATION_CREDENTIALS'),
'storage_bucket' => env('GOOGLE_STORAGE_BUCKET'),
'location' => env('GOOGLE_STT_LOCATION', 'asia-southeast1'),
],
/*
|--------------------------------------------------------------------------
| Vertex AI (Veo 영상 생성 등)
|--------------------------------------------------------------------------
*/
'vertex_ai' => [
'project_id' => env('VERTEX_AI_PROJECT_ID', 'codebridge-chatbot'),
'location' => env('VERTEX_AI_LOCATION', 'us-central1'),
],
/*
|--------------------------------------------------------------------------
| Barobill API (SOAP)
|--------------------------------------------------------------------------
| 바로빌 SOAP 연동 설정 (계좌/카드/인증서 등)
*/
'barobill' => [
'cert_key_test' => env('BAROBILL_CERT_KEY_TEST', ''),
'cert_key_prod' => env('BAROBILL_CERT_KEY_PROD', ''),
'corp_num' => env('BAROBILL_CORP_NUM', ''),
'test_mode' => env('BAROBILL_TEST_MODE', true),
],
];