@astrale-os/sdk 0.5.0-beta.5 → 0.5.0-beta.8
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 +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,18 @@ and deployment adapters without coupling business code to one host runtime.
|
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
12
|
+
Configure the Astrale scope for GitHub Packages and provide a token with `read:packages`; the SDK's
|
|
13
|
+
Kernel dependencies are intentionally distributed there:
|
|
14
|
+
|
|
15
|
+
```ini
|
|
16
|
+
# ~/.npmrc
|
|
17
|
+
registry=https://registry.npmjs.org/
|
|
18
|
+
@astrale-os:registry=https://npm.pkg.github.com/
|
|
19
|
+
//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}
|
|
20
|
+
```
|
|
21
|
+
|
|
12
22
|
```bash
|
|
23
|
+
export NODE_AUTH_TOKEN="$(gh auth token)"
|
|
13
24
|
npm install @astrale-os/sdk
|
|
14
25
|
```
|
|
15
26
|
|