We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8845660 commit 8b4510fCopy full SHA for 8b4510f
1 file changed
README.md
@@ -43,6 +43,16 @@ gemini extensions install https://github.com/gemini-cli-extensions/sql-server
43
44
Set the following environment variables before starting the Gemini CLI. These variables can be loaded from a `.env` file.
45
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
56
```bash
57
export MSSQL_HOST="<your-sql-server-host>" # Optional: defaults to localhost
58
export MSSQL_PORT="<your-sql-server-port>" # Optional: defaults to 1433
0 commit comments