Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions docs/local-development.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,19 @@ 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).

Run `tb auth --interactive` and paste your `admin` Auth Token.
Install the Tinybird CLI by running the following command:

<CodeGroup>
```bash macOS/Linux
curl https://tinybird.co | sh
```

```powershell Windows
powershell -ExecutionPolicy ByPass -c "irm https://tinybird.co | iex"
```
</CodeGroup>

Then, authenticate by running `tb login`.

</Step>

Expand Down