From d150364d4b9afca1023b6c46a148fdf5c56091ff Mon Sep 17 00:00:00 2001 From: adityainit Date: Tue, 14 Apr 2026 08:45:57 +0530 Subject: [PATCH 1/4] docs: update tinybird CLI installation and auth steps --- docs/local-development.mdx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/local-development.mdx b/docs/local-development.mdx index 92a7a65e..6118721f 100644 --- a/docs/local-development.mdx +++ b/docs/local-development.mdx @@ -165,9 +165,13 @@ Next, you'll need to set up the [Tinybird](https://tinybird.co) Clickhouse datab In your newly-cloned Dub repo, navigate to the `packages/tinybird` directory. - If you have `brew`, install `pipx` by running `brew install pipx`. If not, you can check [installation guide](https://pipx.pypa.io/stable/installation/) for other options. After that, install the Tinybird CLI with `pipx install tinybird-cli` (requires Python >= 3.8). + Install the Tinybird CLI by running the following command: + + ```bash terminal + curl https://tinybird.co | sh + ``` - Run `tb auth --interactive` and paste your `admin` Auth Token. + Then, authenticate by running `tb login` and pasting your `admin` Auth Token. From f5a1ccb5e5af9af32c6fb87557522fbebc1a3c68 Mon Sep 17 00:00:00 2001 From: adityainit Date: Tue, 14 Apr 2026 09:00:21 +0530 Subject: [PATCH 2/4] fix formatting typo --- docs/local-development.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/local-development.mdx b/docs/local-development.mdx index 6118721f..07312369 100644 --- a/docs/local-development.mdx +++ b/docs/local-development.mdx @@ -167,7 +167,7 @@ In your newly-cloned Dub repo, navigate to the `packages/tinybird` directory. Install the Tinybird CLI by running the following command: - ```bash terminal + ```bash Terminal curl https://tinybird.co | sh ``` From bbc6b68cf3855277adfa7f54f2d94519db28cd81 Mon Sep 17 00:00:00 2001 From: devnucleus <151805700+devnucleus950@users.noreply.github.com> Date: Thu, 23 Apr 2026 20:26:19 +0530 Subject: [PATCH 3/4] Update docs/local-development.mdx Co-authored-by: Pedro Ladeira <57876830+pepeladeira@users.noreply.github.com> --- docs/local-development.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/local-development.mdx b/docs/local-development.mdx index 07312369..d0716e75 100644 --- a/docs/local-development.mdx +++ b/docs/local-development.mdx @@ -171,7 +171,7 @@ In your newly-cloned Dub repo, navigate to the `packages/tinybird` directory. curl https://tinybird.co | sh ``` - Then, authenticate by running `tb login` and pasting your `admin` Auth Token. + Then, authenticate by running `tb login`. From bbbc02e9b17eafca3e90b047d741a17ad4286142 Mon Sep 17 00:00:00 2001 From: adityainit Date: Thu, 23 Apr 2026 21:05:54 +0530 Subject: [PATCH 4/4] docs: add Windows Tinybird CLI install instructions --- docs/local-development.mdx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/local-development.mdx b/docs/local-development.mdx index d0716e75..bdc87068 100644 --- a/docs/local-development.mdx +++ b/docs/local-development.mdx @@ -166,11 +166,17 @@ Next, you'll need to set up the [Tinybird](https://tinybird.co) Clickhouse datab In your newly-cloned Dub repo, navigate to the `packages/tinybird` directory. Install the Tinybird CLI by running the following command: - - ```bash Terminal + + + ```bash macOS/Linux curl https://tinybird.co | sh ``` + ```powershell Windows + powershell -ExecutionPolicy ByPass -c "irm https://tinybird.co | iex" + ``` + + Then, authenticate by running `tb login`.