We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56e47e9 commit aae8d85Copy full SHA for aae8d85
1 file changed
docs/reference/configuration.md
@@ -176,6 +176,22 @@ To enable debug mode set the `SQLMESH_DEBUG` environment variable to one of the
176
177
Example enabling debug mode for the CLI command `sqlmesh plan`:
178
179
-```bash
180
-$ SQLMESH_DEBUG=1 sqlmesh plan
181
-```
+=== "Bash"
+
+ ```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