Skip to content

Commit 2a18d95

Browse files
committed
docs: add authentication requirements
1 parent 1b27e4d commit 2a18d95

2 files changed

Lines changed: 31 additions & 9 deletions

File tree

README.ko.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,24 @@
1515

1616
2분 안에 설정을 완료하세요:
1717

18-
### 사전 요구 사항 (Prerequisites)
19-
20-
최신 공식 Gemini CLI가 설치되어 있는지 확인하세요:
21-
22-
```bash
2318
npm install -g @google/gemini-cli@latest
19+
2420
# 또는
21+
2522
npm update -g @google/gemini-cli
26-
```
23+
24+
````
25+
26+
### 인증 설정 (필수)
27+
28+
Gemini CLI를 사용하려면 API 키가 필요합니다.
29+
30+
1. [Google AI Studio](https://aistudio.google.com/)에서 API 키를 발급받으세요.
31+
2. 환경 변수로 설정합니다:
32+
33+
```bash
34+
export GEMINI_API_KEY="여기에_API_키를_입력하세요"
35+
````
2736

2837
### 옵션 1: Gemini CLI를 통한 설치 (권장)
2938

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,25 @@ This extension provides production-ready agents, skills, hooks, commands, rules,
1515

1616
Get up and running in under 2 minutes:
1717

18-
### Prerequisites
18+
npm install -g @google/gemini-cli@latest
19+
20+
````
21+
22+
### Authentication (Required)
23+
24+
The Gemini CLI requires an API key to function.
1925
20-
Ensure you have the latest official Gemini CLI installed:
26+
1. Get your API key from [Google AI Studio](https://aistudio.google.com/).
27+
2. Set it as an environment variable:
2128
2229
```bash
23-
npm install -g @google/gemini-cli@latest
30+
export GEMINI_API_KEY="your_api_key_here"
31+
````
32+
33+
Or configure it using the CLI (if supported by your version):
34+
35+
```bash
36+
gemini config set apiKey "your_api_key_here"
2437
```
2538

2639
### Option 1: Install via Gemini CLI (Recommended)

0 commit comments

Comments
 (0)