From f9059819be58181b0fca1d08a0fbfb2b135a40c7 Mon Sep 17 00:00:00 2001 From: Averi Kitsch Date: Mon, 5 Jan 2026 10:18:58 -0800 Subject: [PATCH 1/2] docs: Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index d649896..b640904 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,16 @@ gemini extensions install https://github.com/gemini-cli-extensions/sql-server Set the following environment variables before starting the Gemini CLI. These variables can be loaded from a `.env` file. +#### PowerShell +```ps +$env:MSSQL_HOST="" # Optional: defaults to localhost +$env:MSSQL_PORT="" # Optional: defaults to 1433 +$env:MSSQL_DATABASE="" +$env:MSSQL_USER="" +$env:MSSQL_PASSWORD="" +``` + +#### Bash ```bash export MSSQL_HOST="" # Optional: defaults to localhost export MSSQL_PORT="" # Optional: defaults to 1433 From 74bde303266c1af604e80008786872be0901d64f Mon Sep 17 00:00:00 2001 From: Averi Kitsch Date: Mon, 5 Jan 2026 10:20:56 -0800 Subject: [PATCH 2/2] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b640904..9e8f2a7 100644 --- a/README.md +++ b/README.md @@ -44,12 +44,12 @@ gemini extensions install https://github.com/gemini-cli-extensions/sql-server Set the following environment variables before starting the Gemini CLI. These variables can be loaded from a `.env` file. #### PowerShell -```ps -$env:MSSQL_HOST="" # Optional: defaults to localhost -$env:MSSQL_PORT="" # Optional: defaults to 1433 -$env:MSSQL_DATABASE="" -$env:MSSQL_USER="" -$env:MSSQL_PASSWORD="" +```powershell +$env:MSSQL_HOST = '' # Optional: defaults to localhost +$env:MSSQL_PORT = '' # Optional: defaults to 1433 +$env:MSSQL_DATABASE = '' +$env:MSSQL_USER = '' +$env:MSSQL_PASSWORD = '' ``` #### Bash