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: packages/badai-api-example/README.md
+18-8Lines changed: 18 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,24 @@ The BadAI API provides a powerful GraphQL-based interface for creating conversat
35
35
36
36
## Installation
37
37
38
+
### Important: NPM Registry Configuration
39
+
40
+
The `@badaitech` packages are hosted on GitHub Package Registry. You need to configure npm to use the correct registry for `@badaitech` scoped packages.
41
+
42
+
Create or update your `.npmrc` file in your project root:
43
+
44
+
```bash
45
+
@badaitech:registry=https://npm.pkg.github.com
46
+
```
47
+
48
+
Or configure globally:
49
+
50
+
```bash
51
+
npm config set @badaitech:registry https://npm.pkg.github.com
0 commit comments