Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

basic docs for cli binaries #371

Merged
merged 5 commits into from
Jul 29, 2024
Merged
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
23 changes: 23 additions & 0 deletions 020-Connect/015-CLI/010-cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,29 @@ Xata provides a CLI (command line interface) through an **[NPM package](https://

## Installation

### macOS (Homebrew)

If you use Homebrew to install packages, run:

```bash
brew tap xataio/brew && brew install xata
```

### Windows (Installers)

- [64-bit installer](https://xata-cli-assets.s3.us-east-1.amazonaws.com/channels/stable/xata-x64.exe)
- [32-bit installer](https://xata-cli-assets.s3.us-east-1.amazonaws.com/channels/stable/xata-x86.exe)

### Linux and macOS (Install script)

- We provide a setup script for Linux users who do not wish to extract the tarball themselves:

```bash
curl xata.io/install.sh | sh
```

### Install with npm

To facilitate work across multiple projects and reduce the number of parameters required for executing commands, we advise installing the CLI globally.

```bash
Expand Down
Loading