Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 1c2350b

Browse files
sungchun12Sung Won Chung
and
Sung Won Chung
authored
Better Action Next Step when using CLI (#809)
* add vhol callout * remove vs code language * improve guidance --------- Co-authored-by: Sung Won Chung <[email protected]>
1 parent bf8c013 commit 1c2350b

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ Test SQL code and preview changes by comparing development/staging environment d
4545

4646
**[Get started with data-diff & dbt](https://docs.datafold.com/development_testing/open_source)**
4747

48-
Also available in a [VS Code Extension](https://marketplace.visualstudio.com/items?itemName=Datafold.datafold-vscode)
49-
5048
Reach out on the dbt Slack in [#tools-datafold](https://getdbt.slack.com/archives/C03D25A92UU) for advice and support
5149

5250

data_diff/dbt.py

+8-4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import pydantic
99
import rich
1010
from rich.prompt import Prompt
11+
from rich.markdown import Markdown
1112
from concurrent.futures import ThreadPoolExecutor, as_completed
1213

1314
from data_diff.errors import (
@@ -50,7 +51,8 @@
5051

5152
logger = getLogger(__name__)
5253
CLOUD_DOC_URL = "https://docs.datafold.com/development_testing/cloud"
53-
EXTENSION_INSTALL_URL = "https://get.datafold.com/datafold-vs-code-install"
54+
DATAFOLD_TRIAL_URL = "https://app.datafold.com/org-signup"
55+
DATAFOLD_INSTRUCTIONS_URL = "https://docs.datafold.com/development_testing/datafold_cloud"
5456

5557

5658
class TDiffVars(pydantic.BaseModel):
@@ -558,6 +560,8 @@ def _email_signup() -> None:
558560

559561
def _extension_notification() -> None:
560562
if bool_notify_about_extension():
561-
rich.print(
562-
f"\n\nHaving a good time diffing? :heart_eyes-emoji:\nMake sure to check out the free [bold]Datafold VS Code extension[/bold] for more a more seamless diff experience:\n{EXTENSION_INSTALL_URL}"
563-
)
563+
message = "\n\nHaving a good time diffing?\n\nMake sure to check out the free Datafold Cloud Trial for an evolved experience:\n\n- value-level diffs\n- column-level lineage\n"
564+
rich.print(message)
565+
rich.print(Markdown(f"[Sign Up Here]({DATAFOLD_TRIAL_URL})"))
566+
rich.print("")
567+
rich.print(Markdown(f"[Follow the instructions to get started]({DATAFOLD_INSTRUCTIONS_URL})"))

0 commit comments

Comments
 (0)