Skip to content

Commit 68761cf

Browse files
committed
add gif
1 parent bcdb8c7 commit 68761cf

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ It is more than just a [dbt alternative](https://tobikodata.com/reduce_costs_wit
1111
</p>
1212

1313
## Core Features
14-
<!-- <img src="https://github.com/TobikoData/sqlmesh-public-assets/blob/main/sqlmesh_plan_mode.gif?raw=true" alt="SQLMesh Plan Mode"> -->
15-
TODO: replace with vscode gif in a separate repo link
1614

17-
> Get instant SQL impact analysis of your changes, whether in the CLI or in the [SQLMesh VSCode Extension](https://sqlmesh.readthedocs.io/en/latest/guides/vscode/?h=vs+cod)
15+
<img src="https://github.com/TobikoData/sqlmesh-public-assets/blob/main/vscode.gif?raw=true" alt="SQLMesh Plan Mode">
16+
17+
> Get instant SQL impact and context of your changes, both in the CLI and in the [SQLMesh VSCode Extension](https://sqlmesh.readthedocs.io/en/latest/guides/vscode/?h=vs+cod)
1818
1919
<details>
2020
<summary><b>Virtual Data Environments</b></summary>
@@ -121,7 +121,7 @@ outputs:
121121
* Never build a table [more than once](https://tobikodata.com/simplicity-or-efficiency-how-dbt-makes-you-choose.html)
122122
* Track what data’s been modified and run only the necessary transformations for [incremental models](https://tobikodata.com/correctly-loading-incremental-data-at-scale.html)
123123
* Run [unit tests](https://tobikodata.com/we-need-even-greater-expectations.html) for free and configure automated audits
124-
* Run [table diffs](https://sqlmesh.readthedocs.io/en/stable/guides/tablediff/?h=data+diff#diffing-multiple-models-across-environments) based on tables/views impacted by a change
124+
* Run [table diffs](https://sqlmesh.readthedocs.io/en/stable/examples/sqlmesh_cli_crash_course/?h=crash#run-data-diff-against-prod) based on tables/views impacted by a change
125125
126126
<details>
127127
<summary><b>Level Up Your SQL</b></summary>
@@ -143,31 +143,32 @@ mkdir sqlmesh-example
143143
cd sqlmesh-example
144144
python -m venv .venv
145145
source .venv/bin/activate
146-
pip install 'sqlmesh[lsp,web]' # install the sqlmesh package with extensions to work with VS Code
146+
pip install 'sqlmesh[lsp]' # install the sqlmesh package with extensions to work with VS Code
147147
source .venv/bin/activate # reactivate the venv to ensure you're using the right installation
148148
sqlmesh init duckdb # get started right away with a local duckdb instance
149149
sqlmesh plan # see the plan for the changes you're making
150150
```
151151

152152
</details>
153+
154+
> Note: You may need to run `python3` or `pip3` instead of `python` or `pip`, depending on your python installation.
155+
153156
<details>
154-
<summary><b>Windows Powershell Installation</b></summary>
157+
<summary><b>Windows Installation</b></summary>
155158

156159
```bash
157160
mkdir sqlmesh-example
158161
cd sqlmesh-example
159162
python -m venv .venv
160163
.\.venv\Scripts\Activate.ps1
161-
pip install 'sqlmesh[lsp,web]' # install the sqlmesh package with extensions to work with VS Code
164+
pip install 'sqlmesh[lsp]' # install the sqlmesh package with extensions to work with VS Code
162165
.\.venv\Scripts\Activate.ps1 # reactivate the venv to ensure you're using the right installation
163166
sqlmesh init duckdb # get started right away with a local duckdb instance
164167
sqlmesh plan # see the plan for the changes you're making
165168
```
166169
</details>
167170

168171

169-
> Note: You may need to run `python3` or `pip3` instead of `python` or `pip`, depending on your python installation.
170-
171172
Follow the [quickstart guide](https://sqlmesh.readthedocs.io/en/stable/quickstart/cli/#1-create-the-sqlmesh-project) to learn how to use SQLMesh. You already have a head start!
172173

173174
Follow the [crash course](https://sqlmesh.readthedocs.io/en/stable/examples/sqlmesh_cli_crash_course/) to learn the core movesets and use the easy to reference cheat sheet.

0 commit comments

Comments
 (0)