@provanity/worker-linux-x64 0.0.0-bootstrap.0 → 0.1.0
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 +7 -2
- package/bin/.gitkeep +1 -0
- package/bin/provanity +0 -0
- package/package.json +18 -14
package/README.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
# @provanity/worker-linux-x64
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Linux x64 `provanity` worker binary package for the Node orchestrator.
|
|
4
|
+
|
|
5
|
+
Unlike `@provanity/cli-linux-x64`, this package has no host `os` restriction.
|
|
6
|
+
The orchestrator normally resolves its npm tarball URL and asks the remote GPU
|
|
7
|
+
host to download and extract the binary directly, without requiring npm on the
|
|
8
|
+
remote machine.
|
package/bin/.gitkeep
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/bin/provanity
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@provanity/worker-linux-x64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Linux x64 provanity worker binary for remote orchestration",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/WooMai/provanity.git",
|
|
9
|
+
"directory": "npm/worker-linux-x64"
|
|
10
|
+
},
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"bin",
|
|
16
|
+
"README.md"
|
|
17
|
+
]
|
|
18
|
+
}
|