File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,16 @@ gemini extensions install https://github.com/gemini-cli-extensions/sql-server
4343
4444Set 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
4757export MSSQL_HOST=" <your-sql-server-host>" # Optional: defaults to localhost
4858export MSSQL_PORT=" <your-sql-server-port>" # Optional: defaults to 1433
You can’t perform that action at this time.
0 commit comments