@zappinginc/zm2 6.0.14
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/.claude/settings.local.json +8 -0
- package/.gitattributes +4 -0
- package/.mocharc.js +14 -0
- package/CHANGELOG.md +2416 -0
- package/CLAUDE.md +84 -0
- package/CONTRIBUTING.md +124 -0
- package/GNU-AGPL-3.0.txt +665 -0
- package/LICENSE +1 -0
- package/README.md +248 -0
- package/bin/zm2 +3 -0
- package/bin/zm2-dev +3 -0
- package/bin/zm2-docker +3 -0
- package/bin/zm2-runtime +3 -0
- package/bin/zm2-windows +3 -0
- package/bin/zm2.ps1 +3 -0
- package/bun.lock +421 -0
- package/constants.js +114 -0
- package/index.js +13 -0
- package/lib/API/Configuration.js +212 -0
- package/lib/API/Containerizer.js +335 -0
- package/lib/API/Dashboard.js +459 -0
- package/lib/API/Deploy.js +117 -0
- package/lib/API/Extra.js +775 -0
- package/lib/API/ExtraMgmt/Docker.js +30 -0
- package/lib/API/Log.js +315 -0
- package/lib/API/LogManagement.js +371 -0
- package/lib/API/Modules/LOCAL.js +122 -0
- package/lib/API/Modules/Modularizer.js +148 -0
- package/lib/API/Modules/NPM.js +445 -0
- package/lib/API/Modules/TAR.js +362 -0
- package/lib/API/Modules/flagExt.js +46 -0
- package/lib/API/Modules/index.js +120 -0
- package/lib/API/Monit.js +247 -0
- package/lib/API/Serve.js +343 -0
- package/lib/API/Startup.js +629 -0
- package/lib/API/UX/helpers.js +213 -0
- package/lib/API/UX/index.js +9 -0
- package/lib/API/UX/pm2-describe.js +193 -0
- package/lib/API/UX/pm2-ls-minimal.js +31 -0
- package/lib/API/UX/pm2-ls.js +483 -0
- package/lib/API/Version.js +382 -0
- package/lib/API/interpreter.json +12 -0
- package/lib/API/pm2-plus/PM2IO.js +372 -0
- package/lib/API/pm2-plus/auth-strategies/CliAuth.js +288 -0
- package/lib/API/pm2-plus/auth-strategies/WebAuth.js +187 -0
- package/lib/API/pm2-plus/helpers.js +97 -0
- package/lib/API/pm2-plus/link.js +126 -0
- package/lib/API/pm2-plus/pres/motd +16 -0
- package/lib/API/pm2-plus/pres/motd.update +26 -0
- package/lib/API/pm2-plus/pres/welcome +28 -0
- package/lib/API/pm2-plus/process-selector.js +52 -0
- package/lib/API/schema.json +379 -0
- package/lib/API.js +1931 -0
- package/lib/Client.js +776 -0
- package/lib/Common.js +911 -0
- package/lib/Configuration.js +304 -0
- package/lib/Daemon.js +456 -0
- package/lib/Event.js +37 -0
- package/lib/God/ActionMethods.js +909 -0
- package/lib/God/ClusterMode.js +97 -0
- package/lib/God/ForkMode.js +297 -0
- package/lib/God/Methods.js +265 -0
- package/lib/God/Reload.js +240 -0
- package/lib/God.js +632 -0
- package/lib/HttpInterface.js +76 -0
- package/lib/ProcessContainer.js +305 -0
- package/lib/ProcessContainerBun.js +360 -0
- package/lib/ProcessContainerFork.js +42 -0
- package/lib/ProcessContainerForkBun.js +33 -0
- package/lib/ProcessUtils.js +55 -0
- package/lib/TreeKill.js +118 -0
- package/lib/Utility.js +430 -0
- package/lib/VersionCheck.js +46 -0
- package/lib/Watcher.js +117 -0
- package/lib/Worker.js +169 -0
- package/lib/binaries/CLI.js +1041 -0
- package/lib/binaries/DevCLI.js +183 -0
- package/lib/binaries/Runtime.js +101 -0
- package/lib/binaries/Runtime4Docker.js +192 -0
- package/lib/completion.js +229 -0
- package/lib/completion.sh +40 -0
- package/lib/motd +36 -0
- package/lib/templates/Dockerfiles/Dockerfile-java.tpl +7 -0
- package/lib/templates/Dockerfiles/Dockerfile-nodejs.tpl +8 -0
- package/lib/templates/Dockerfiles/Dockerfile-ruby.tpl +7 -0
- package/lib/templates/ecosystem-es.tpl +24 -0
- package/lib/templates/ecosystem-simple-es.tpl +8 -0
- package/lib/templates/ecosystem-simple.tpl +6 -0
- package/lib/templates/ecosystem.tpl +22 -0
- package/lib/templates/init-scripts/launchd.tpl +35 -0
- package/lib/templates/init-scripts/openrc.tpl +52 -0
- package/lib/templates/init-scripts/pm2-init-amazon.sh +86 -0
- package/lib/templates/init-scripts/rcd-openbsd.tpl +41 -0
- package/lib/templates/init-scripts/rcd.tpl +44 -0
- package/lib/templates/init-scripts/smf.tpl +43 -0
- package/lib/templates/init-scripts/systemd-online.tpl +22 -0
- package/lib/templates/init-scripts/systemd.tpl +22 -0
- package/lib/templates/init-scripts/upstart.tpl +103 -0
- package/lib/templates/logrotate.d/pm2 +10 -0
- package/lib/templates/sample-apps/http-server/README.md +14 -0
- package/lib/templates/sample-apps/http-server/api.js +9 -0
- package/lib/templates/sample-apps/http-server/ecosystem.config.js +14 -0
- package/lib/templates/sample-apps/http-server/package.json +11 -0
- package/lib/templates/sample-apps/pm2-plus-metrics-actions/README.md +45 -0
- package/lib/templates/sample-apps/pm2-plus-metrics-actions/custom-metrics.js +66 -0
- package/lib/templates/sample-apps/pm2-plus-metrics-actions/ecosystem.config.js +12 -0
- package/lib/templates/sample-apps/pm2-plus-metrics-actions/package.json +11 -0
- package/lib/templates/sample-apps/python-app/README.md +4 -0
- package/lib/templates/sample-apps/python-app/echo.py +7 -0
- package/lib/templates/sample-apps/python-app/ecosystem.config.js +12 -0
- package/lib/templates/sample-apps/python-app/package.json +11 -0
- package/lib/tools/Config.js +248 -0
- package/lib/tools/IsAbsolute.js +20 -0
- package/lib/tools/copydirSync.js +101 -0
- package/lib/tools/deleteFolderRecursive.js +19 -0
- package/lib/tools/find-package-json.js +74 -0
- package/lib/tools/fmt.js +72 -0
- package/lib/tools/isbinaryfile.js +94 -0
- package/lib/tools/json5.js +752 -0
- package/lib/tools/open.js +63 -0
- package/lib/tools/passwd.js +58 -0
- package/lib/tools/promise.min.js +1 -0
- package/lib/tools/sexec.js +55 -0
- package/lib/tools/treeify.js +113 -0
- package/lib/tools/which.js +120 -0
- package/lib/tools/xdg-open +861 -0
- package/package.json +219 -0
- package/paths.js +93 -0
- package/pm2 +11 -0
- package/preinstall.js +24 -0
- package/run.sh +9 -0
- package/types/index.d.ts +722 -0
- package/types/tsconfig.json +14 -0
|
@@ -0,0 +1,379 @@
|
|
|
1
|
+
{
|
|
2
|
+
"script": {
|
|
3
|
+
"type": "string",
|
|
4
|
+
"require": true,
|
|
5
|
+
"alias" : "exec",
|
|
6
|
+
"docDescription": "Path of the script to launch, required field"
|
|
7
|
+
},
|
|
8
|
+
"name": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"docDefault": "Script filename without the extension (app for app.js)",
|
|
11
|
+
"docDescription": "Process name in the process list"
|
|
12
|
+
},
|
|
13
|
+
"name_prefix": {
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
"filter_env": {
|
|
17
|
+
"type": [
|
|
18
|
+
"boolean",
|
|
19
|
+
"array",
|
|
20
|
+
"string"
|
|
21
|
+
],
|
|
22
|
+
"docDefault": false,
|
|
23
|
+
"docDescription": "Enable filtering global environments"
|
|
24
|
+
},
|
|
25
|
+
"namespace": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"docDefault": "default",
|
|
28
|
+
"docDescription": "Process namespace"
|
|
29
|
+
},
|
|
30
|
+
"install_url": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"cwd": {
|
|
34
|
+
"type": "string",
|
|
35
|
+
"docDefault": "CWD of the current environment (from your shell)",
|
|
36
|
+
"docDescription": "Current working directory to start the process with"
|
|
37
|
+
},
|
|
38
|
+
"args": {
|
|
39
|
+
"type": [
|
|
40
|
+
"array",
|
|
41
|
+
"string"
|
|
42
|
+
],
|
|
43
|
+
"docDescription": "Arguments to pass to the script"
|
|
44
|
+
},
|
|
45
|
+
"exec_interpreter": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"alias": "interpreter",
|
|
48
|
+
"docDefault": "node",
|
|
49
|
+
"docDescription": "Interpreter absolute path"
|
|
50
|
+
},
|
|
51
|
+
"node_args": {
|
|
52
|
+
"type": [
|
|
53
|
+
"array",
|
|
54
|
+
"string"
|
|
55
|
+
],
|
|
56
|
+
"alias": ["interpreterArgs", "interpreter_args"],
|
|
57
|
+
"docDescription": "Arguments to pass to the interpreter"
|
|
58
|
+
},
|
|
59
|
+
"out_file": {
|
|
60
|
+
"type": "string",
|
|
61
|
+
"alias": ["out", "output", "out_log"],
|
|
62
|
+
"docDefault": "~/.pm2/logs/<app_name>-out.log",
|
|
63
|
+
"docDescription": "File path for stdout (each line is appended to this file)"
|
|
64
|
+
},
|
|
65
|
+
"error_file": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"alias": ["error", "err", "err_file", "err_log"],
|
|
68
|
+
"docDefault": "~/.pm2/logs/<app_name>-error.err",
|
|
69
|
+
"docDescription": "File path for stderr (each line is appended to this file)"
|
|
70
|
+
},
|
|
71
|
+
"log_file": {
|
|
72
|
+
"type": [
|
|
73
|
+
"boolean",
|
|
74
|
+
"string"
|
|
75
|
+
],
|
|
76
|
+
"alias": "log",
|
|
77
|
+
"docDefault": "/dev/null",
|
|
78
|
+
"docDescription": "File path for combined stdout and stderr (each line is appended to this file)"
|
|
79
|
+
},
|
|
80
|
+
"disable_logs": {
|
|
81
|
+
"type": "boolean",
|
|
82
|
+
"docDefault": false,
|
|
83
|
+
"docDescription": "Disable all logs storage"
|
|
84
|
+
},
|
|
85
|
+
"log_type": {
|
|
86
|
+
"type": "string",
|
|
87
|
+
"docDescription": "Define a specific log output type, possible value: json"
|
|
88
|
+
},
|
|
89
|
+
"log_transport": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"docDescription": "Log transport: 'file' (default), 'syslog' (unix socket), or 'both'"
|
|
92
|
+
},
|
|
93
|
+
"log_date_format": {
|
|
94
|
+
"type": "string",
|
|
95
|
+
"docDescription": "Format for log timestamps in day.js format (eg YYYY-MM-DD HH:mm Z)"
|
|
96
|
+
},
|
|
97
|
+
"time": {
|
|
98
|
+
"type": "boolean"
|
|
99
|
+
},
|
|
100
|
+
"env": {
|
|
101
|
+
"type": [
|
|
102
|
+
"object",
|
|
103
|
+
"string"
|
|
104
|
+
],
|
|
105
|
+
"docDescription": "Specify environment variables to be injected"
|
|
106
|
+
},
|
|
107
|
+
"^env_\\S*$": {
|
|
108
|
+
"type": [
|
|
109
|
+
"object",
|
|
110
|
+
"string"
|
|
111
|
+
],
|
|
112
|
+
"docDescription": "Specify environment variables to be injected when using --env <env_name>"
|
|
113
|
+
},
|
|
114
|
+
"max_memory_restart": {
|
|
115
|
+
"type": [
|
|
116
|
+
"string",
|
|
117
|
+
"number"
|
|
118
|
+
],
|
|
119
|
+
"regex": "^\\d+(G|M|K)?$",
|
|
120
|
+
"ext_type": "sbyte",
|
|
121
|
+
"desc": "it should be a NUMBER - byte, \"[NUMBER]G\"(Gigabyte), \"[NUMBER]M\"(Megabyte) or \"[NUMBER]K\"(Kilobyte)",
|
|
122
|
+
"docDescription": "Restart the app if an amount of memory is exceeded (format: /[0-9](K|M|G)?/ K for KB, 'M' for MB, 'G' for GB, default to B)"
|
|
123
|
+
},
|
|
124
|
+
"pid_file": {
|
|
125
|
+
"type": "string",
|
|
126
|
+
"alias": "pid",
|
|
127
|
+
"docDefault": "~/.pm2/pids/app_name-id.pid",
|
|
128
|
+
"docDescription": "File path where the pid of the started process is written by pm2"
|
|
129
|
+
},
|
|
130
|
+
"restart_delay": {
|
|
131
|
+
"type" : "number",
|
|
132
|
+
"docDefault": 0,
|
|
133
|
+
"docDescription": "Time in ms to wait before restarting a crashing app"
|
|
134
|
+
},
|
|
135
|
+
"exp_backoff_restart_delay": {
|
|
136
|
+
"type": "number",
|
|
137
|
+
"docDefault": 0,
|
|
138
|
+
"docDescription": "Restart Time in ms to wait before restarting a crashing app"
|
|
139
|
+
},
|
|
140
|
+
"source_map_support": {
|
|
141
|
+
"type": "boolean",
|
|
142
|
+
"docDefault": true,
|
|
143
|
+
"docDescription": "Enable or disable the source map support"
|
|
144
|
+
},
|
|
145
|
+
"disable_source_map_support": {
|
|
146
|
+
"type": "boolean",
|
|
147
|
+
"docDefault": false,
|
|
148
|
+
"docDescription": "Enable or disable the source map support"
|
|
149
|
+
},
|
|
150
|
+
"wait_ready": {
|
|
151
|
+
"type": "boolean",
|
|
152
|
+
"docDefault": false,
|
|
153
|
+
"docDescription": "Make the process wait for a process.send('ready')"
|
|
154
|
+
},
|
|
155
|
+
"instances": {
|
|
156
|
+
"type": "number",
|
|
157
|
+
"docDefault": 1,
|
|
158
|
+
"docDescription": "Number of instances to be started in cluster mode"
|
|
159
|
+
},
|
|
160
|
+
"kill_timeout": {
|
|
161
|
+
"type": "number",
|
|
162
|
+
"docDefault": 1600,
|
|
163
|
+
"docDescription": "Time in ms before sending the final SIGKILL signal after SIGINT"
|
|
164
|
+
},
|
|
165
|
+
"shutdown_with_message": {
|
|
166
|
+
"type": "boolean",
|
|
167
|
+
"docDefault": false,
|
|
168
|
+
"docDescription": "Shutdown an application with process.send('shutdown') instead of process.kill(pid, SIGINT)"
|
|
169
|
+
},
|
|
170
|
+
"listen_timeout": {
|
|
171
|
+
"type": "number",
|
|
172
|
+
"docDescription": "Time in ms before forcing a reload if app is still not listening/has still note sent ready"
|
|
173
|
+
},
|
|
174
|
+
"cron_restart": {
|
|
175
|
+
"type": [
|
|
176
|
+
"string",
|
|
177
|
+
"number"
|
|
178
|
+
],
|
|
179
|
+
"alias": "cron",
|
|
180
|
+
"docDescription": "A cron pattern to restart your app"
|
|
181
|
+
},
|
|
182
|
+
"merge_logs": {
|
|
183
|
+
"type": "boolean",
|
|
184
|
+
"alias" : "combine_logs",
|
|
185
|
+
"docDefault": false,
|
|
186
|
+
"docDescription": "In cluster mode, merge each type of logs into a single file (instead of having one for each cluster)"
|
|
187
|
+
},
|
|
188
|
+
"vizion": {
|
|
189
|
+
"type": "boolean",
|
|
190
|
+
"default" : true,
|
|
191
|
+
"docDefault" : "True",
|
|
192
|
+
"docDescription": "Enable or disable the versioning metadatas (vizion library)"
|
|
193
|
+
},
|
|
194
|
+
"autostart": {
|
|
195
|
+
"type": "boolean",
|
|
196
|
+
"default": true,
|
|
197
|
+
"docDefault": "True",
|
|
198
|
+
"docDescription": "Enable or disable auto start when adding process"
|
|
199
|
+
},
|
|
200
|
+
"autorestart": {
|
|
201
|
+
"type": "boolean",
|
|
202
|
+
"default": true,
|
|
203
|
+
"docDefault": "True",
|
|
204
|
+
"docDescription": "Enable or disable auto restart after process failure"
|
|
205
|
+
},
|
|
206
|
+
"stop_exit_codes": {
|
|
207
|
+
"type": [
|
|
208
|
+
"array",
|
|
209
|
+
"number"
|
|
210
|
+
],
|
|
211
|
+
"docDescription": "List of exit codes that should allow the process to stop (skip autorestart)."
|
|
212
|
+
},
|
|
213
|
+
"watch_delay": {
|
|
214
|
+
"type": "number",
|
|
215
|
+
"docDefault": "True",
|
|
216
|
+
"docDescription": "Restart delay on file change detected"
|
|
217
|
+
},
|
|
218
|
+
"watch": {
|
|
219
|
+
"type": [
|
|
220
|
+
"boolean",
|
|
221
|
+
"array",
|
|
222
|
+
"string"
|
|
223
|
+
],
|
|
224
|
+
"docDefault": false,
|
|
225
|
+
"docDescription": "Enable or disable the watch mode"
|
|
226
|
+
},
|
|
227
|
+
"ignore_watch": {
|
|
228
|
+
"type": [
|
|
229
|
+
"array",
|
|
230
|
+
"string"
|
|
231
|
+
],
|
|
232
|
+
"docDescription": "List of paths to ignore (regex)"
|
|
233
|
+
},
|
|
234
|
+
"watch_options": {
|
|
235
|
+
"type": "object",
|
|
236
|
+
"docDescription": "Object that will be used as an options with chokidar (refer to chokidar documentation)"
|
|
237
|
+
},
|
|
238
|
+
"min_uptime": {
|
|
239
|
+
"type": [
|
|
240
|
+
"number",
|
|
241
|
+
"string"
|
|
242
|
+
],
|
|
243
|
+
"regex": "^\\d+(h|m|s)?$",
|
|
244
|
+
"desc": "it should be a NUMBER - milliseconds, \"[NUMBER]h\"(hours), \"[NUMBER]m\"(minutes) or \"[NUMBER]s\"(seconds)",
|
|
245
|
+
"min": 100,
|
|
246
|
+
"ext_type": "stime",
|
|
247
|
+
"docDefault": 1000,
|
|
248
|
+
"docDescription": "Minimum uptime of the app to be considered started (format is /[0-9]+(h|m|s)?/, for hours, minutes, seconds, docDefault to ms)"
|
|
249
|
+
},
|
|
250
|
+
"max_restarts": {
|
|
251
|
+
"type": "number",
|
|
252
|
+
"min": 0,
|
|
253
|
+
"docDefault": 16,
|
|
254
|
+
"docDescription": "Number of times a script is restarted when it exits in less than min_uptime"
|
|
255
|
+
},
|
|
256
|
+
"execute_command": {
|
|
257
|
+
"type": "boolean"
|
|
258
|
+
},
|
|
259
|
+
"exec_mode": {
|
|
260
|
+
"type": "string",
|
|
261
|
+
"regex": "^(cluster|fork)(_mode)?$",
|
|
262
|
+
"desc": "it should be \"cluster\"(\"cluster_mode\") or \"fork\"(\"fork_mode\") only",
|
|
263
|
+
"docDefault": "fork",
|
|
264
|
+
"docDescription": "Set the execution mode, possible values: fork|cluster"
|
|
265
|
+
},
|
|
266
|
+
"force": {
|
|
267
|
+
"type": "boolean",
|
|
268
|
+
"docDefault": false,
|
|
269
|
+
"docDescription": "Start a script even if it is already running (only the script path is considered)"
|
|
270
|
+
},
|
|
271
|
+
"append_env_to_name": {
|
|
272
|
+
"type": "boolean",
|
|
273
|
+
"docDefault": false,
|
|
274
|
+
"docDescription": "Append the environment name to the app name"
|
|
275
|
+
},
|
|
276
|
+
"post_update": {
|
|
277
|
+
"type": "array",
|
|
278
|
+
"docDescription": "List of commands executed after a pull/upgrade operation performed from Keymetrics dashboard"
|
|
279
|
+
},
|
|
280
|
+
"trace": {
|
|
281
|
+
"type": [
|
|
282
|
+
"boolean"
|
|
283
|
+
],
|
|
284
|
+
"docDefault": false,
|
|
285
|
+
"docDescription": "Enable or disable the transaction tracing"
|
|
286
|
+
},
|
|
287
|
+
"disable_trace": {
|
|
288
|
+
"type": [
|
|
289
|
+
"boolean"
|
|
290
|
+
],
|
|
291
|
+
"docDefault": true,
|
|
292
|
+
"docDescription": "Enable or disable the transaction tracing"
|
|
293
|
+
},
|
|
294
|
+
"v8": {
|
|
295
|
+
"type": [
|
|
296
|
+
"boolean"
|
|
297
|
+
]
|
|
298
|
+
},
|
|
299
|
+
"event_loop_inspector": {
|
|
300
|
+
"type": [
|
|
301
|
+
"boolean"
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
"deep_monitoring": {
|
|
305
|
+
"type": [
|
|
306
|
+
"boolean"
|
|
307
|
+
]
|
|
308
|
+
},
|
|
309
|
+
"increment_var": {
|
|
310
|
+
"type": "string",
|
|
311
|
+
"docDescription": "Specify the name of an environment variable to inject which increments for each cluster"
|
|
312
|
+
},
|
|
313
|
+
"instance_var": {
|
|
314
|
+
"type": "string",
|
|
315
|
+
"default": "NODE_APP_INSTANCE",
|
|
316
|
+
"docDefault": "NODE_APP_INSTANCE",
|
|
317
|
+
"docDescription": "Rename the NODE_APP_INSTANCE environment variable"
|
|
318
|
+
},
|
|
319
|
+
"pmx": {
|
|
320
|
+
"type": ["boolean", "string"],
|
|
321
|
+
"default": true,
|
|
322
|
+
"docDefault": "True",
|
|
323
|
+
"docDescription": "Enable or disable pmx wrapping"
|
|
324
|
+
},
|
|
325
|
+
"automation": {
|
|
326
|
+
"type": "boolean",
|
|
327
|
+
"default": true,
|
|
328
|
+
"docDefault": "True",
|
|
329
|
+
"docDescription": "Enable or disable pmx wrapping"
|
|
330
|
+
},
|
|
331
|
+
"treekill": {
|
|
332
|
+
"type": "boolean",
|
|
333
|
+
"default": true,
|
|
334
|
+
"docDefault": "True",
|
|
335
|
+
"docDescription": "Only kill the main process, not detached children"
|
|
336
|
+
},
|
|
337
|
+
"port": {
|
|
338
|
+
"type": "number",
|
|
339
|
+
"docDescription": "Shortcut to inject a PORT environment variable"
|
|
340
|
+
},
|
|
341
|
+
"username" : {
|
|
342
|
+
"type": "string",
|
|
343
|
+
"docDescription": "Current user that started the process"
|
|
344
|
+
},
|
|
345
|
+
"uid": {
|
|
346
|
+
"type" : [
|
|
347
|
+
"number",
|
|
348
|
+
"string"
|
|
349
|
+
],
|
|
350
|
+
"alias": "user",
|
|
351
|
+
"docDefault": "Current user uid",
|
|
352
|
+
"docDescription": "Set user id"
|
|
353
|
+
},
|
|
354
|
+
"gid": {
|
|
355
|
+
"type" : [
|
|
356
|
+
"number",
|
|
357
|
+
"string"
|
|
358
|
+
],
|
|
359
|
+
"docDefault": "Current user gid",
|
|
360
|
+
"docDescription": "Set group id"
|
|
361
|
+
},
|
|
362
|
+
"windowsHide": {
|
|
363
|
+
"type": "boolean",
|
|
364
|
+
"docDefault": "True",
|
|
365
|
+
"docDescription": "Enable or disable the Windows popup when starting an app",
|
|
366
|
+
"default": true
|
|
367
|
+
},
|
|
368
|
+
"kill_retry_time": {
|
|
369
|
+
"type": "number",
|
|
370
|
+
"default" : 100
|
|
371
|
+
},
|
|
372
|
+
"write": {
|
|
373
|
+
"type": "boolean"
|
|
374
|
+
},
|
|
375
|
+
"io": {
|
|
376
|
+
"type": "object",
|
|
377
|
+
"docDescription": "Specify apm values and configuration"
|
|
378
|
+
}
|
|
379
|
+
}
|