@constellation-network/node-pilot 0.0.6 → 0.0.7
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 +9 -9
- package/dist/helpers/env-templates.js +7 -7
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -21,7 +21,7 @@ $ npm install -g @constellation-network/node-pilot
|
|
21
21
|
$ cpilot COMMAND
|
22
22
|
running command...
|
23
23
|
$ cpilot (--version|-v)
|
24
|
-
@constellation-network/node-pilot/0.0.
|
24
|
+
@constellation-network/node-pilot/0.0.7 darwin-arm64 node-v22.15.0
|
25
25
|
$ cpilot --help [COMMAND]
|
26
26
|
USAGE
|
27
27
|
$ cpilot COMMAND
|
@@ -62,7 +62,7 @@ EXAMPLES
|
|
62
62
|
$ cpilot config
|
63
63
|
```
|
64
64
|
|
65
|
-
_See code: [src/commands/config.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.
|
65
|
+
_See code: [src/commands/config.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.7/src/commands/config.ts)_
|
66
66
|
|
67
67
|
## `cpilot config get [NAME]`
|
68
68
|
|
@@ -86,7 +86,7 @@ EXAMPLES
|
|
86
86
|
$ cpilot config get gl0:CL_PUBLIC_HTTP_PORT
|
87
87
|
```
|
88
88
|
|
89
|
-
_See code: [src/commands/config/get.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.
|
89
|
+
_See code: [src/commands/config/get.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.7/src/commands/config/get.ts)_
|
90
90
|
|
91
91
|
## `cpilot config set NAME VALUE`
|
92
92
|
|
@@ -109,7 +109,7 @@ EXAMPLES
|
|
109
109
|
$ cpilot config set gl0:CL_PUBLIC_HTTP_PORT 9000
|
110
110
|
```
|
111
111
|
|
112
|
-
_See code: [src/commands/config/set.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.
|
112
|
+
_See code: [src/commands/config/set.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.7/src/commands/config/set.ts)_
|
113
113
|
|
114
114
|
## `cpilot help [COMMAND]`
|
115
115
|
|
@@ -146,7 +146,7 @@ EXAMPLES
|
|
146
146
|
$ cpilot info
|
147
147
|
```
|
148
148
|
|
149
|
-
_See code: [src/commands/info.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.
|
149
|
+
_See code: [src/commands/info.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.7/src/commands/info.ts)_
|
150
150
|
|
151
151
|
## `cpilot logs [LAYER]`
|
152
152
|
|
@@ -169,7 +169,7 @@ EXAMPLES
|
|
169
169
|
$ cpilot logs
|
170
170
|
```
|
171
171
|
|
172
|
-
_See code: [src/commands/logs.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.
|
172
|
+
_See code: [src/commands/logs.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.7/src/commands/logs.ts)_
|
173
173
|
|
174
174
|
## `cpilot restart`
|
175
175
|
|
@@ -186,7 +186,7 @@ EXAMPLES
|
|
186
186
|
$ cpilot restart
|
187
187
|
```
|
188
188
|
|
189
|
-
_See code: [src/commands/restart.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.
|
189
|
+
_See code: [src/commands/restart.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.7/src/commands/restart.ts)_
|
190
190
|
|
191
191
|
## `cpilot shutdown`
|
192
192
|
|
@@ -203,7 +203,7 @@ EXAMPLES
|
|
203
203
|
$ cpilot shutdown
|
204
204
|
```
|
205
205
|
|
206
|
-
_See code: [src/commands/shutdown.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.
|
206
|
+
_See code: [src/commands/shutdown.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.7/src/commands/shutdown.ts)_
|
207
207
|
|
208
208
|
## `cpilot status`
|
209
209
|
|
@@ -217,5 +217,5 @@ DESCRIPTION
|
|
217
217
|
Display node status and configuration settings
|
218
218
|
```
|
219
219
|
|
220
|
-
_See code: [src/commands/status.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.
|
220
|
+
_See code: [src/commands/status.ts](https://github.com/Constellation-Labs/node-pilot/blob/v0.0.7/src/commands/status.ts)_
|
221
221
|
<!-- commandsstop -->
|
@@ -2,10 +2,10 @@ export function getLayerEnvFileContent(layer, network, commonInfo, layerInfo) {
|
|
2
2
|
return `
|
3
3
|
# Node
|
4
4
|
CL_EXTERNAL_IP=${commonInfo.CL_EXTERNAL_IP}
|
5
|
-
CL_DOCKER_JAVA_OPTS=
|
6
|
-
CL_KEYSTORE=
|
7
|
-
CL_KEYALIAS=
|
8
|
-
CL_PASSWORD=
|
5
|
+
CL_DOCKER_JAVA_OPTS='${layerInfo.CL_DOCKER_JAVA_OPTS}'
|
6
|
+
CL_KEYSTORE='/app/key.p12'
|
7
|
+
CL_KEYALIAS='${commonInfo.CL_KEYALIAS}'
|
8
|
+
CL_PASSWORD='${commonInfo.CL_PASSWORD}'
|
9
9
|
CL_TESSELATION_LAYER=${layer}
|
10
10
|
|
11
11
|
# NETWORK
|
@@ -26,8 +26,8 @@ CL_CLI_HTTP_PORT=${layerInfo.CL_CLI_HTTP_PORT}
|
|
26
26
|
}
|
27
27
|
export function getKeyFileContent(commonInfo) {
|
28
28
|
return `
|
29
|
-
export CL_KEYSTORE=
|
30
|
-
export CL_KEYALIAS=
|
31
|
-
export CL_PASSWORD=
|
29
|
+
export CL_KEYSTORE='${commonInfo.CL_KEYSTORE}'
|
30
|
+
export CL_KEYALIAS='${commonInfo.CL_KEYALIAS}'
|
31
|
+
export CL_PASSWORD='${commonInfo.CL_PASSWORD}'
|
32
32
|
`;
|
33
33
|
}
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED