Skip to content

Commit 977e083

Browse files
authored
Merge pull request #9 from weaponsforge/dev
v0.0.3
2 parents 4bdad19 + 971d432 commit 977e083

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.env
2+
**/node_modules/
23
Dockerfile

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
GEMINI_API_KEY=YOUR_GOOGLE_GEMINI_API_KEY
2+
# GEMINI_MODEL=gemini-2.5-pro

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.env
2+
**/node_modules/
23

34
# Exclude all contents within projects folder recursively
45
projects/*

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This repository contains Docker files and recommended configurations for a quick
1414

1515
Demo
1616

17-
https://github.com/user-attachments/assets/7e7edb8c-3b97-4933-b2a6-14c48e54c0c7
17+
https://github.com/user-attachments/assets/c314e1be-7315-4a45-af37-41ed050d9be3
1818

1919
## 🛠️ Installation
2020

@@ -26,6 +26,9 @@ https://github.com/user-attachments/assets/7e7edb8c-3b97-4933-b2a6-14c48e54c0c7
2626
| ID | Description |
2727
| --- | --- |
2828
| GEMINI_API_KEY | Google Gemini API key |
29+
| GEMINI_MODEL | Gemini model<br><ul><li>`gemini-2.5-pro` (default)</li><li>`gemini-2.5-flash`, `gemini‑1.5‑pro`, etc</li><li><blockquote>**INFO:** Exclude this from the `.env` file if there's no need to change the default model</blockquote></li><ul> |
30+
31+
💡 Other Gemini CLI **environment variables** are available in its [Environment Variables & .env Files](https://github.com/google-gemini/gemini-cli/blob/main/docs/cli/configuration.md#environment-variables--env-files) documentation.
2932

3033
3. (Optional) Put code repositories or directories for Gemini CLI inspection under the `"/projects"` directory.
3134
- See the [projects/README.md](projects/README.md) file for more details on organizing your project repositories.
@@ -78,7 +81,7 @@ https://github.com/user-attachments/assets/7e7edb8c-3b97-4933-b2a6-14c48e54c0c7
7881

7982
_(These steps require a Google account)_
8083

81-
1. Create one from [Google AI Studio](https://aistudio.google.com/app/apikey). This requires a Google account.
84+
1. Create one from [Google AI Studio](https://aistudio.google.com/app/apikey).
8285
2. Follow the prompts for creating an API key.
8386
- Type a project name in which to create the API key.
8487
- > **INFO:** You may also select an existing Google project in which to create the key.

docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ services:
99
dockerfile: Dockerfile
1010
volumes:
1111
- ./projects:/opt/app/projects
12-
- /opt/app/projects/**/node_modules # Overrides ALL node_modules at any depth
1312
stdin_open: true
1413
tty: true

0 commit comments

Comments
 (0)