superbrain-server 1.0.50 → 1.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -27
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,32 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
One-command installer and launcher for the SuperBrain backend.
|
|
4
|
-
|
|
5
|
-
Run the backend on any machine without cloning the repository.
|
|
6
|
-
|
|
7
|
-
## Install and Run
|
|
8
|
-
|
|
9
|
-
### Recommended (no global install)
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
npx -y superbrain-server@latest
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
### Global install (optional)
|
|
16
|
-
|
|
17
|
-
```bash
|
|
1
|
+
|
|
2
|
+
\\\ash
|
|
18
3
|
npm install -g superbrain-server
|
|
19
4
|
superbrain-server
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
### Beta channel
|
|
23
|
-
|
|
24
|
-
```bash
|
|
25
|
-
npx -y superbrain-server@beta
|
|
26
|
-
```
|
|
5
|
+
\\\
|
|
27
6
|
|
|
28
7
|
### GitHub Packages (auth + install)
|
|
29
|
-
|
|
30
8
|
Note: This is only needed for GitHub Packages. It is not required for npmjs (`superbrain-server`) installs.
|
|
31
9
|
|
|
32
10
|
Use a GitHub token with `read:packages`, then run:
|
|
@@ -35,8 +13,6 @@ Use a GitHub token with `read:packages`, then run:
|
|
|
35
13
|
npm config set @sidinsearch:registry https://npm.pkg.github.com
|
|
36
14
|
npm config set //npm.pkg.github.com/:_authToken YOUR_GITHUB_TOKEN
|
|
37
15
|
npx -y @sidinsearch/superbrain-server@latest
|
|
38
|
-
# beta channel
|
|
39
|
-
npx -y @sidinsearch/superbrain-server@beta
|
|
40
16
|
```
|
|
41
17
|
|
|
42
18
|
GitHub Packages docs: https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-npm-registry
|