Skip to content

Commit 6015421

Browse files
authored
Merge branch 'main' into jacklyn/hypermode-changes
2 parents a1db0d0 + bbc3ec3 commit 6015421

File tree

5 files changed

+21
-86
lines changed

5 files changed

+21
-86
lines changed

hyp-cli.mdx

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,11 @@ When using Hyp CLI alongside the Modus CLI, users get access to
99

1010
## Install
1111

12-
Install Hyp CLI via a cURL command or npm.
13-
14-
<Tabs>
15-
<Tab title="MacOS + Linux">
16-
```bash
17-
curl install.hypermode.com/hyp.sh -sSfL | bash
18-
```
19-
20-
or
21-
22-
```bash
23-
npm install -g @hypermode/hyp-cli
24-
```
25-
</Tab>
26-
<Tab title="Windows">
27-
```bash
28-
npm install -g @hypermode/hyp-cli
29-
```
30-
</Tab>
31-
</Tabs>
12+
Install Hyp CLI via npm.
13+
14+
```bash
15+
npm install -g @hypermode/hyp-cli
16+
```
3217

3318
## Commands
3419

modus/modus-cli.mdx

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,11 @@ running it locally.
88

99
## Install
1010

11-
Install Modus CLI via a cURL command or npm.
12-
13-
<Tabs>
14-
<Tab title="MacOS + Linux">
15-
```bash
16-
curl install.hypermode.com/modus.sh -sSfL | bash
17-
```
18-
19-
or
20-
21-
```bash
22-
npm install -g @hypermode/modus-cli
23-
```
24-
25-
</Tab>
26-
<Tab title="Windows">
27-
```bash
28-
npm install -g @hypermode/modus-cli
29-
```
30-
</Tab>
31-
</Tabs>
11+
Install Modus CLI via npm.
12+
13+
```bash
14+
npm install -g @hypermode/modus-cli
15+
```
3216

3317
## Commands
3418

modus/quickstart.mdx

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,11 @@ learn how to use the basic components of a Modus app and how to run it locally.
1919
<Steps>
2020
<Step title="Install the Modus CLI">
2121
The Modus CLI provides a set of commands to help you create, build, and run your Modus apps.
22-
You can install the CLI using cURL or npm.
22+
Install the CLI using npm.
2323

24-
<Tabs>
25-
<Tab title="MacOS + Linux">
26-
```bash
27-
curl install.hypermode.com/modus.sh -sSfL | bash
28-
```
29-
30-
or
31-
32-
```bash
33-
npm install -g @hypermode/modus-cli
34-
```
35-
</Tab>
36-
<Tab title="Windows">
37-
```bash
38-
npm install -g @hypermode/modus-cli
39-
```
40-
</Tab>
41-
</Tabs>
24+
```bash
25+
npm install -g @hypermode/modus-cli
26+
```
4227

4328
</Step>
4429

quickstart.mdx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,7 @@ the basic components of a Modus app and how to deploy it to Hypermode.
3636
Once you've selected your repository, click "Import" to deploy your app.
3737
</Tab>
3838
<Tab title="Hyp CLI">
39-
Install the Hyp CLI via cURL (macOS + Linux) or npm (all platforms):
40-
41-
```bash
42-
curl install.hypermode.com/hyp.sh -sSfL | bash
43-
```
44-
45-
or
39+
Install the Hyp CLI via npm.
4640

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

work-locally.mdx

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,12 @@ The Hyp CLI helps you invoke your Hypermode-hosted models from your local Modus
1313
development environment. You can install the Hyp CLI to augment Modus and access
1414
your Hypermode-hosted models.
1515

16-
<Steps>
17-
<Step title="Install Hyp CLI">
18-
<CodeGroup>
1916

20-
```bash MacOS + Linux
21-
curl -sSL http://install.hypermode.com/hyp.sh | bash
22-
```
17+
```bash
18+
npm install -g @hypermode/hyp-cli
19+
```
2320

24-
```js Windows
25-
npm install -g @hypermode/hyp-cli
26-
```
21+
## Log into Hyp
2722

28-
</CodeGroup>
29-
</Step>
30-
<Step title="Log in to the Hyp CLI">
31-
Ensure you're logged in to the Hyp CLI with the `hyp login` command.
32-
</Step>
33-
<Step title="Run your app locally">
34-
Run `modus dev` to run your Modus app locally.
35-
</Step>
36-
37-
</Steps>
23+
Before running `modus dev` to run your Modus app locally, ensure you're logged
24+
into the Hyp CLI with the `hyp login` command.

0 commit comments

Comments
 (0)