Skip to content

Commit aae8d85

Browse files
authored
Docs: add windows debug syntax to config ref (#1506)
* Add powershell syntax for debugging * Add cmd syntax for debugging
1 parent 56e47e9 commit aae8d85

1 file changed

Lines changed: 19 additions & 3 deletions

File tree

docs/reference/configuration.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,22 @@ To enable debug mode set the `SQLMESH_DEBUG` environment variable to one of the
176176

177177
Example enabling debug mode for the CLI command `sqlmesh plan`:
178178

179-
```bash
180-
$ SQLMESH_DEBUG=1 sqlmesh plan
181-
```
179+
=== "Bash"
180+
181+
```bash
182+
$ SQLMESH_DEBUG=1 sqlmesh plan
183+
```
184+
185+
=== "MS Powershell"
186+
187+
```powershell
188+
PS> $env:SQLMESH_DEBUG=1
189+
PS> sqlmesh plan
190+
```
191+
192+
=== "MS CMD"
193+
194+
```cmd
195+
C:\> set SQLMESH_DEBUG=1
196+
C:\> sqlmesh plan
197+
```

0 commit comments

Comments
 (0)