Skip to content
Merged
Show file tree
Hide file tree
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
25 changes: 5 additions & 20 deletions hyp-cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,11 @@ When using Hyp CLI alongside the Modus CLI, users get access to

## Install

Install Hyp CLI via a cURL command or npm.

<Tabs>
<Tab title="MacOS + Linux">
```bash
curl install.hypermode.com/hyp.sh -sSfL | bash
```

or

```bash
npm install -g @hypermode/hyp-cli
```
</Tab>
<Tab title="Windows">
```bash
npm install -g @hypermode/hyp-cli
```
</Tab>
</Tabs>
Install Hyp CLI via npm.

```bash
npm install -g @hypermode/hyp-cli
```

## Commands

Expand Down
26 changes: 5 additions & 21 deletions modus/modus-cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,11 @@ running it locally.

## Install

Install Modus CLI via a cURL command or npm.

<Tabs>
<Tab title="MacOS + Linux">
```bash
curl install.hypermode.com/modus.sh -sSfL | bash
```

or

```bash
npm install -g @hypermode/modus-cli
```

</Tab>
<Tab title="Windows">
```bash
npm install -g @hypermode/modus-cli
```
</Tab>
</Tabs>
Install Modus CLI via npm.

```bash
npm install -g @hypermode/modus-cli
```

## Commands

Expand Down
23 changes: 4 additions & 19 deletions modus/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,11 @@ learn how to use the basic components of a Modus app and how to run it locally.
<Steps>
<Step title="Install the Modus CLI">
The Modus CLI provides a set of commands to help you create, build, and run your Modus apps.
You can install the CLI using cURL or npm.
Install the CLI using npm.

<Tabs>
<Tab title="MacOS + Linux">
```bash
curl install.hypermode.com/modus.sh -sSfL | bash
```

or

```bash
npm install -g @hypermode/modus-cli
```
</Tab>
<Tab title="Windows">
```bash
npm install -g @hypermode/modus-cli
```
</Tab>
</Tabs>
```bash
npm install -g @hypermode/modus-cli
```

</Step>

Expand Down
8 changes: 1 addition & 7 deletions quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,7 @@ the basic components of a Modus app and how to deploy it to Hypermode.
Once you've selected your repository, click "Import" to deploy your app.
</Tab>
<Tab title="Hyp CLI">
Install the Hyp CLI via cURL (macOS + Linux) or npm (all platforms):

```bash
curl install.hypermode.com/hyp.sh -sSfL | bash
```

or
Install the Hyp CLI via npm.

```bash
npm install -g @hypermode/hyp-cli
Expand Down
10 changes: 1 addition & 9 deletions work-locally.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,10 @@ experimentation with new AI models.

For access to hosted models, install the Hyp CLI to augment Modus.

<CodeGroup>

```bash MacOS + Linux
curl -sSL http://install.hypermode.com/hyp.sh | bash
```

```js Windows
```bash
npm install -g @hypermode/hyp-cli
```

</CodeGroup>

## Log into Hyp

Before running `modus dev` to run your Modus app locally, ensure you're logged
Expand Down