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

@@ -94,16 +94,9 @@ public function store(array $data): BankAccount
'account_number' => $data['account_number'],
'account_holder' => $data['account_holder'],
'account_name' => $data['account_name'],
'account_type' => $data['account_type'] ?? null,
'balance' => $data['balance'] ?? 0,
'currency' => $data['currency'] ?? 'KRW',
'opened_at' => $data['opened_at'] ?? null,
'branch_name' => $data['branch_name'] ?? null,
'memo' => $data['memo'] ?? null,
'status' => $data['status'] ?? 'active',
'assigned_user_id' => $data['assigned_user_id'] ?? null,
'is_primary' => $isPrimary,
'sort_order' => $data['sort_order'] ?? 0,
'created_by' => $userId,
'updated_by' => $userId,
]);
@@ -131,15 +124,8 @@ public function update(int $id, array $data): BankAccount
'account_number' => $data['account_number'] ?? $account->account_number,
'account_holder' => $data['account_holder'] ?? $account->account_holder,
'account_name' => $data['account_name'] ?? $account->account_name,
'account_type' => $data['account_type'] ?? $account->account_type,
'balance' => $data['balance'] ?? $account->balance,
'currency' => $data['currency'] ?? $account->currency,
'opened_at' => $data['opened_at'] ?? $account->opened_at,
'branch_name' => $data['branch_name'] ?? $account->branch_name,
'memo' => $data['memo'] ?? $account->memo,
'status' => $data['status'] ?? $account->status,
'assigned_user_id' => $data['assigned_user_id'] ?? $account->assigned_user_id,
'sort_order' => $data['sort_order'] ?? $account->sort_order,
'updated_by' => $userId,
]);