Skip to content

Commit 8b4510f

Browse files
authored
docs: Update README.md (#68)
1 parent 8845660 commit 8b4510f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,16 @@ gemini extensions install https://github.com/gemini-cli-extensions/sql-server
4343

4444
Set the following environment variables before starting the Gemini CLI. These variables can be loaded from a `.env` file.
4545

46+
#### PowerShell
47+
```powershell
48+
$env:MSSQL_HOST = '<your-sql-server-host>' # Optional: defaults to localhost
49+
$env:MSSQL_PORT = '<your-sql-server-port>' # Optional: defaults to 1433
50+
$env:MSSQL_DATABASE = '<your-database-name>'
51+
$env:MSSQL_USER = '<your-database-user>'
52+
$env:MSSQL_PASSWORD = '<your-database-password>'
53+
```
54+
55+
#### Bash
4656
```bash
4757
export MSSQL_HOST="<your-sql-server-host>" # Optional: defaults to localhost
4858
export MSSQL_PORT="<your-sql-server-port>" # Optional: defaults to 1433

0 commit comments

Comments
 (0)