You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/docs/getting-started/nitro.mdx
+12-14Lines changed: 12 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ title: Nitro
4
4
5
5
# Nitro
6
6
7
-
This guide will walk through setting up your first workflow in a Nitro app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
7
+
This guide will walk through setting up your first workflow in a [Nitro v3](https://v3.nitro.build/) project. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
8
8
9
9
---
10
10
@@ -16,7 +16,7 @@ This guide will walk through setting up your first workflow in a Nitro app. Alon
16
16
Start by creating a new Nitro project. This command will create a new directory named `nitro-app` and setup a Nitro project inside it.
17
17
18
18
```bash
19
-
npx giget@latest nitro nitro-app --install
19
+
npx create-nitro-app
20
20
```
21
21
22
22
Enter the newly made directory:
@@ -44,16 +44,16 @@ cd nitro-app
44
44
45
45
### Configure Nitro
46
46
47
-
Add `workflow/nitro` to your `nitro.config.ts` This enables usage of the `"use workflow"` and `"use step"` directives.
47
+
Add `workflow/nitro`module to your `nitro.config.ts` This enables usage of the `"use workflow"` and `"use step"` directives.
0 commit comments