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: apps/baseai.dev/content/learn/learn/index.mdx
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,9 +48,10 @@ Create a directory in your local machine and navigate to it. Run the following c
48
48
```bash
49
49
mkdir my-ai-project
50
50
npm init -y
51
+
npm install dotenv
51
52
```
52
53
53
-
This command will create a `package.json` file in your project directory with default values.
54
+
This command will create a `package.json` file in your project directory with default values. It will also install `dotenv` package to read environment variables from `.env` file.
0 commit comments