@saltcorn/cli 0.7.3-beta.3 → 0.7.3-beta.6
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 +81 -160
- package/npm-shrinkwrap.json +6396 -1169
- package/oclif.manifest.json +1 -1
- package/package.json +7 -6
- package/src/commands/build-app.js +102 -0
- package/src/commands/configuration-check-backups.js +104 -0
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ $ npm install -g @saltcorn/cli
|
|
|
20
20
|
$ saltcorn COMMAND
|
|
21
21
|
running command...
|
|
22
22
|
$ saltcorn (-v|--version|version)
|
|
23
|
-
@saltcorn/cli/0.7.3-beta.
|
|
23
|
+
@saltcorn/cli/0.7.3-beta.6 darwin-arm64 node-v16.15.1
|
|
24
24
|
$ saltcorn --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ saltcorn COMMAND
|
|
@@ -33,7 +33,9 @@ USAGE
|
|
|
33
33
|
<!-- commands -->
|
|
34
34
|
* [`saltcorn add-schema`](#saltcorn-add-schema)
|
|
35
35
|
* [`saltcorn backup`](#saltcorn-backup)
|
|
36
|
+
* [`saltcorn build-app`](#saltcorn-build-app)
|
|
36
37
|
* [`saltcorn configuration-check`](#saltcorn-configuration-check)
|
|
38
|
+
* [`saltcorn configuration-check-backups FILES`](#saltcorn-configuration-check-backups-files)
|
|
37
39
|
* [`saltcorn create-tenant TENANT`](#saltcorn-create-tenant-tenant)
|
|
38
40
|
* [`saltcorn create-user`](#saltcorn-create-user)
|
|
39
41
|
* [`saltcorn delete-tenants`](#saltcorn-delete-tenants)
|
|
@@ -51,11 +53,6 @@ USAGE
|
|
|
51
53
|
* [`saltcorn saltcorn migrate`](#saltcorn-saltcorn-migrate)
|
|
52
54
|
* [`saltcorn modify-user USER_EMAIL`](#saltcorn-modify-user-user_email)
|
|
53
55
|
* [`saltcorn plugins`](#saltcorn-plugins)
|
|
54
|
-
* [`saltcorn plugins:inspect PLUGIN...`](#saltcorn-pluginsinspect-plugin)
|
|
55
|
-
* [`saltcorn plugins:install PLUGIN...`](#saltcorn-pluginsinstall-plugin)
|
|
56
|
-
* [`saltcorn plugins:link PLUGIN`](#saltcorn-pluginslink-plugin)
|
|
57
|
-
* [`saltcorn plugins:uninstall PLUGIN...`](#saltcorn-pluginsuninstall-plugin)
|
|
58
|
-
* [`saltcorn plugins:update`](#saltcorn-pluginsupdate)
|
|
59
56
|
* [`saltcorn release VERSION`](#saltcorn-release-version)
|
|
60
57
|
* [`saltcorn reset-schema`](#saltcorn-reset-schema)
|
|
61
58
|
* [`saltcorn restore FILE`](#saltcorn-restore-file)
|
|
@@ -82,7 +79,7 @@ OPTIONS
|
|
|
82
79
|
-f, --force force command execution
|
|
83
80
|
```
|
|
84
81
|
|
|
85
|
-
_See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
82
|
+
_See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/add-schema.js)_
|
|
86
83
|
|
|
87
84
|
## `saltcorn backup`
|
|
88
85
|
|
|
@@ -98,7 +95,28 @@ OPTIONS
|
|
|
98
95
|
-z, --zip zip format
|
|
99
96
|
```
|
|
100
97
|
|
|
101
|
-
_See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
98
|
+
_See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/backup.js)_
|
|
99
|
+
|
|
100
|
+
## `saltcorn build-app`
|
|
101
|
+
|
|
102
|
+
build mobile app
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
USAGE
|
|
106
|
+
$ saltcorn build-app
|
|
107
|
+
|
|
108
|
+
OPTIONS
|
|
109
|
+
-a, --appFileName=appFileName If set, the copied app will get this name
|
|
110
|
+
-b, --buildDirectory=buildDirectory A directory where the app should be build
|
|
111
|
+
-c, --copyAppDirectory=copyAppDirectory If set, the app file will be copied here
|
|
112
|
+
-d, --useDocker Use a docker container to build the app.
|
|
113
|
+
-l, --localUserTables=localUserTables user defined tables that should be replicated into the app
|
|
114
|
+
-p, --platforms=platforms Platforms to build for space separated list
|
|
115
|
+
-s, --serverURL=serverURL URL to a saltcorn server
|
|
116
|
+
-v, --entryPoint=entryPoint Entry Point
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
_See code: [src/commands/build-app.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/build-app.js)_
|
|
102
120
|
|
|
103
121
|
## `saltcorn configuration-check`
|
|
104
122
|
|
|
@@ -112,7 +130,21 @@ OPTIONS
|
|
|
112
130
|
-t, --tenant=tenant tenant
|
|
113
131
|
```
|
|
114
132
|
|
|
115
|
-
_See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
133
|
+
_See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/configuration-check.js)_
|
|
134
|
+
|
|
135
|
+
## `saltcorn configuration-check-backups FILES`
|
|
136
|
+
|
|
137
|
+
Check configuration
|
|
138
|
+
|
|
139
|
+
```
|
|
140
|
+
USAGE
|
|
141
|
+
$ saltcorn configuration-check-backups FILES
|
|
142
|
+
|
|
143
|
+
ARGUMENTS
|
|
144
|
+
FILES backup file to check. can be repeated, e.g. with *
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
_See code: [src/commands/configuration-check-backups.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/configuration-check-backups.js)_
|
|
116
148
|
|
|
117
149
|
## `saltcorn create-tenant TENANT`
|
|
118
150
|
|
|
@@ -130,7 +162,7 @@ OPTIONS
|
|
|
130
162
|
-e, --email=email Email of owner of tenant
|
|
131
163
|
```
|
|
132
164
|
|
|
133
|
-
_See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
165
|
+
_See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/create-tenant.js)_
|
|
134
166
|
|
|
135
167
|
## `saltcorn create-user`
|
|
136
168
|
|
|
@@ -148,7 +180,7 @@ OPTIONS
|
|
|
148
180
|
-t, --tenant=tenant tenant
|
|
149
181
|
```
|
|
150
182
|
|
|
151
|
-
_See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
183
|
+
_See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/create-user.js)_
|
|
152
184
|
|
|
153
185
|
## `saltcorn delete-tenants`
|
|
154
186
|
|
|
@@ -159,7 +191,7 @@ USAGE
|
|
|
159
191
|
$ saltcorn delete-tenants
|
|
160
192
|
```
|
|
161
193
|
|
|
162
|
-
_See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
194
|
+
_See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/delete-tenants.js)_
|
|
163
195
|
|
|
164
196
|
## `saltcorn delete-user USER_EMAIL`
|
|
165
197
|
|
|
@@ -180,7 +212,7 @@ DESCRIPTION
|
|
|
180
212
|
Command deletes the user specified by USER_EMAIL.
|
|
181
213
|
```
|
|
182
214
|
|
|
183
|
-
_See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
215
|
+
_See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/delete-user.js)_
|
|
184
216
|
|
|
185
217
|
## `saltcorn fixtures`
|
|
186
218
|
|
|
@@ -199,7 +231,7 @@ DESCRIPTION
|
|
|
199
231
|
This manual step it is never required for users and rarely required for developers
|
|
200
232
|
```
|
|
201
233
|
|
|
202
|
-
_See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
234
|
+
_See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/fixtures.js)_
|
|
203
235
|
|
|
204
236
|
## `saltcorn get-cfg KEY`
|
|
205
237
|
|
|
@@ -217,7 +249,7 @@ OPTIONS
|
|
|
217
249
|
-t, --tenant=tenant tenant
|
|
218
250
|
```
|
|
219
251
|
|
|
220
|
-
_See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
252
|
+
_See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/get-cfg.js)_
|
|
221
253
|
|
|
222
254
|
## `saltcorn help [COMMAND]`
|
|
223
255
|
|
|
@@ -255,7 +287,7 @@ ALIASES
|
|
|
255
287
|
$ saltcorn paths
|
|
256
288
|
```
|
|
257
289
|
|
|
258
|
-
_See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
290
|
+
_See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/info.js)_
|
|
259
291
|
|
|
260
292
|
## `saltcorn inspect TYPE [NAME]`
|
|
261
293
|
|
|
@@ -273,7 +305,7 @@ OPTIONS
|
|
|
273
305
|
-t, --tenant=tenant tenant
|
|
274
306
|
```
|
|
275
307
|
|
|
276
|
-
_See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
308
|
+
_See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/inspect.js)_
|
|
277
309
|
|
|
278
310
|
## `saltcorn install-pack`
|
|
279
311
|
|
|
@@ -289,7 +321,7 @@ OPTIONS
|
|
|
289
321
|
-t, --tenant=tenant tenant
|
|
290
322
|
```
|
|
291
323
|
|
|
292
|
-
_See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
324
|
+
_See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/install-pack.js)_
|
|
293
325
|
|
|
294
326
|
## `saltcorn install-plugin`
|
|
295
327
|
|
|
@@ -305,7 +337,7 @@ OPTIONS
|
|
|
305
337
|
-t, --tenant=tenant tenant
|
|
306
338
|
```
|
|
307
339
|
|
|
308
|
-
_See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
340
|
+
_See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/install-plugin.js)_
|
|
309
341
|
|
|
310
342
|
## `saltcorn list-tenants`
|
|
311
343
|
|
|
@@ -316,7 +348,7 @@ USAGE
|
|
|
316
348
|
$ saltcorn list-tenants
|
|
317
349
|
```
|
|
318
350
|
|
|
319
|
-
_See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
351
|
+
_See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/list-tenants.js)_
|
|
320
352
|
|
|
321
353
|
## `saltcorn localize-plugin PLUGIN PATH`
|
|
322
354
|
|
|
@@ -334,7 +366,7 @@ OPTIONS
|
|
|
334
366
|
-t, --tenant=tenant tenant
|
|
335
367
|
```
|
|
336
368
|
|
|
337
|
-
_See code: [src/commands/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
369
|
+
_See code: [src/commands/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/localize-plugin.js)_
|
|
338
370
|
|
|
339
371
|
## `saltcorn make-migration`
|
|
340
372
|
|
|
@@ -350,7 +382,7 @@ DESCRIPTION
|
|
|
350
382
|
unless you are a developer.
|
|
351
383
|
```
|
|
352
384
|
|
|
353
|
-
_See code: [src/commands/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
385
|
+
_See code: [src/commands/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/make-migration.js)_
|
|
354
386
|
|
|
355
387
|
## `saltcorn saltcorn migrate`
|
|
356
388
|
|
|
@@ -372,7 +404,7 @@ DESCRIPTION
|
|
|
372
404
|
servers and need to control when the migrations are run.
|
|
373
405
|
```
|
|
374
406
|
|
|
375
|
-
_See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
407
|
+
_See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/migrate.js)_
|
|
376
408
|
|
|
377
409
|
## `saltcorn modify-user USER_EMAIL`
|
|
378
410
|
|
|
@@ -401,145 +433,34 @@ DESCRIPTION
|
|
|
401
433
|
NOTE that -a and -r role (--role=role) can give conflict.
|
|
402
434
|
```
|
|
403
435
|
|
|
404
|
-
_See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
436
|
+
_See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/modify-user.js)_
|
|
405
437
|
|
|
406
438
|
## `saltcorn plugins`
|
|
407
439
|
|
|
408
|
-
List
|
|
440
|
+
List and upgrade plugins for tenants
|
|
409
441
|
|
|
410
442
|
```
|
|
411
443
|
USAGE
|
|
412
444
|
$ saltcorn plugins
|
|
413
445
|
|
|
414
446
|
OPTIONS
|
|
415
|
-
--
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/index.ts)_
|
|
422
|
-
|
|
423
|
-
## `saltcorn plugins:inspect PLUGIN...`
|
|
424
|
-
|
|
425
|
-
Displays installation properties of a plugin.
|
|
426
|
-
|
|
427
|
-
```
|
|
428
|
-
USAGE
|
|
429
|
-
$ saltcorn plugins:inspect PLUGIN...
|
|
430
|
-
|
|
431
|
-
ARGUMENTS
|
|
432
|
-
PLUGIN [default: .] Plugin to inspect.
|
|
433
|
-
|
|
434
|
-
OPTIONS
|
|
435
|
-
-h, --help Show CLI help.
|
|
436
|
-
-v, --verbose
|
|
437
|
-
|
|
438
|
-
EXAMPLE
|
|
439
|
-
$ saltcorn plugins:inspect myplugin
|
|
440
|
-
```
|
|
441
|
-
|
|
442
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/inspect.ts)_
|
|
443
|
-
|
|
444
|
-
## `saltcorn plugins:install PLUGIN...`
|
|
445
|
-
|
|
446
|
-
Installs a plugin into the CLI.
|
|
447
|
-
|
|
448
|
-
```
|
|
449
|
-
USAGE
|
|
450
|
-
$ saltcorn plugins:install PLUGIN...
|
|
451
|
-
|
|
452
|
-
ARGUMENTS
|
|
453
|
-
PLUGIN Plugin to install.
|
|
454
|
-
|
|
455
|
-
OPTIONS
|
|
456
|
-
-f, --force Run yarn install with force flag.
|
|
457
|
-
-h, --help Show CLI help.
|
|
458
|
-
-v, --verbose
|
|
447
|
+
-d, --dryRun Upgrade dry-run
|
|
448
|
+
-f, --force Force update
|
|
449
|
+
-n, --name=name Plugin name
|
|
450
|
+
-u, --upgrade Upgrade
|
|
451
|
+
-v, --verbose Verbose output
|
|
459
452
|
|
|
460
453
|
DESCRIPTION
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
Installation of a user-installed plugin will override a core plugin.
|
|
464
|
-
|
|
465
|
-
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
|
|
466
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
467
|
-
the CLI without the need to patch and update the whole CLI.
|
|
468
|
-
|
|
469
|
-
ALIASES
|
|
470
|
-
$ saltcorn plugins:add
|
|
454
|
+
...
|
|
455
|
+
Extra documentation goes here
|
|
471
456
|
|
|
472
457
|
EXAMPLES
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
```
|
|
477
|
-
|
|
478
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/install.ts)_
|
|
479
|
-
|
|
480
|
-
## `saltcorn plugins:link PLUGIN`
|
|
481
|
-
|
|
482
|
-
Links a plugin into the CLI for development.
|
|
483
|
-
|
|
484
|
-
```
|
|
485
|
-
USAGE
|
|
486
|
-
$ saltcorn plugins:link PLUGIN
|
|
487
|
-
|
|
488
|
-
ARGUMENTS
|
|
489
|
-
PATH [default: .] path to plugin
|
|
490
|
-
|
|
491
|
-
OPTIONS
|
|
492
|
-
-h, --help Show CLI help.
|
|
493
|
-
-v, --verbose
|
|
494
|
-
|
|
495
|
-
DESCRIPTION
|
|
496
|
-
Installation of a linked plugin will override a user-installed or core plugin.
|
|
497
|
-
|
|
498
|
-
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
|
|
499
|
-
command will override the user-installed or core plugin implementation. This is useful for development work.
|
|
500
|
-
|
|
501
|
-
EXAMPLE
|
|
502
|
-
$ saltcorn plugins:link myplugin
|
|
503
|
-
```
|
|
504
|
-
|
|
505
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/link.ts)_
|
|
506
|
-
|
|
507
|
-
## `saltcorn plugins:uninstall PLUGIN...`
|
|
508
|
-
|
|
509
|
-
Removes a plugin from the CLI.
|
|
510
|
-
|
|
511
|
-
```
|
|
512
|
-
USAGE
|
|
513
|
-
$ saltcorn plugins:uninstall PLUGIN...
|
|
514
|
-
|
|
515
|
-
ARGUMENTS
|
|
516
|
-
PLUGIN plugin to uninstall
|
|
517
|
-
|
|
518
|
-
OPTIONS
|
|
519
|
-
-h, --help Show CLI help.
|
|
520
|
-
-v, --verbose
|
|
521
|
-
|
|
522
|
-
ALIASES
|
|
523
|
-
$ saltcorn plugins:unlink
|
|
524
|
-
$ saltcorn plugins:remove
|
|
525
|
-
```
|
|
526
|
-
|
|
527
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/uninstall.ts)_
|
|
528
|
-
|
|
529
|
-
## `saltcorn plugins:update`
|
|
530
|
-
|
|
531
|
-
Update installed plugins.
|
|
532
|
-
|
|
533
|
-
```
|
|
534
|
-
USAGE
|
|
535
|
-
$ saltcorn plugins:update
|
|
536
|
-
|
|
537
|
-
OPTIONS
|
|
538
|
-
-h, --help Show CLI help.
|
|
539
|
-
-v, --verbose
|
|
458
|
+
plugins -v - verbose output of commands
|
|
459
|
+
plugins -u -d - dry-run for plugin update
|
|
460
|
+
plugins -u -f - force plugin update
|
|
540
461
|
```
|
|
541
462
|
|
|
542
|
-
_See code: [
|
|
463
|
+
_See code: [src/commands/plugins.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/plugins.js)_
|
|
543
464
|
|
|
544
465
|
## `saltcorn release VERSION`
|
|
545
466
|
|
|
@@ -553,7 +474,7 @@ ARGUMENTS
|
|
|
553
474
|
VERSION New version number
|
|
554
475
|
```
|
|
555
476
|
|
|
556
|
-
_See code: [src/commands/release.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
477
|
+
_See code: [src/commands/release.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/release.js)_
|
|
557
478
|
|
|
558
479
|
## `saltcorn reset-schema`
|
|
559
480
|
|
|
@@ -572,7 +493,7 @@ DESCRIPTION
|
|
|
572
493
|
This will delete all existing information
|
|
573
494
|
```
|
|
574
495
|
|
|
575
|
-
_See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
496
|
+
_See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/reset-schema.js)_
|
|
576
497
|
|
|
577
498
|
## `saltcorn restore FILE`
|
|
578
499
|
|
|
@@ -589,7 +510,7 @@ OPTIONS
|
|
|
589
510
|
-t, --tenant=tenant tenant
|
|
590
511
|
```
|
|
591
512
|
|
|
592
|
-
_See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
513
|
+
_See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/restore.js)_
|
|
593
514
|
|
|
594
515
|
## `saltcorn rm-tenant`
|
|
595
516
|
|
|
@@ -608,7 +529,7 @@ DESCRIPTION
|
|
|
608
529
|
It recommended to make backup of tenant before perform this command.
|
|
609
530
|
```
|
|
610
531
|
|
|
611
|
-
_See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
532
|
+
_See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/rm-tenant.js)_
|
|
612
533
|
|
|
613
534
|
## `saltcorn run-benchmark [BASEURL]`
|
|
614
535
|
|
|
@@ -627,7 +548,7 @@ OPTIONS
|
|
|
627
548
|
-t, --token=token API Token for reporting results
|
|
628
549
|
```
|
|
629
550
|
|
|
630
|
-
_See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
551
|
+
_See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/run-benchmark.js)_
|
|
631
552
|
|
|
632
553
|
## `saltcorn run-tests [PACKAGE]`
|
|
633
554
|
|
|
@@ -647,7 +568,7 @@ OPTIONS
|
|
|
647
568
|
--watchAll Watch files for changes and rerun all tests.
|
|
648
569
|
```
|
|
649
570
|
|
|
650
|
-
_See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
571
|
+
_See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/run-tests.js)_
|
|
651
572
|
|
|
652
573
|
## `saltcorn scheduler`
|
|
653
574
|
|
|
@@ -661,7 +582,7 @@ OPTIONS
|
|
|
661
582
|
-v, --verbose Verbose
|
|
662
583
|
```
|
|
663
584
|
|
|
664
|
-
_See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
585
|
+
_See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/scheduler.js)_
|
|
665
586
|
|
|
666
587
|
## `saltcorn serve`
|
|
667
588
|
|
|
@@ -681,7 +602,7 @@ OPTIONS
|
|
|
681
602
|
-v, --verbose Verbose
|
|
682
603
|
```
|
|
683
604
|
|
|
684
|
-
_See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
605
|
+
_See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/serve.js)_
|
|
685
606
|
|
|
686
607
|
## `saltcorn set-cfg KEY [VALUE]`
|
|
687
608
|
|
|
@@ -702,7 +623,7 @@ OPTIONS
|
|
|
702
623
|
-t, --tenant=tenant tenant
|
|
703
624
|
```
|
|
704
625
|
|
|
705
|
-
_See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
626
|
+
_See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/set-cfg.js)_
|
|
706
627
|
|
|
707
628
|
## `saltcorn setup`
|
|
708
629
|
|
|
@@ -721,7 +642,7 @@ DESCRIPTION
|
|
|
721
642
|
configuration file
|
|
722
643
|
```
|
|
723
644
|
|
|
724
|
-
_See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
645
|
+
_See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/setup.js)_
|
|
725
646
|
|
|
726
647
|
## `saltcorn setup-benchmark`
|
|
727
648
|
|
|
@@ -735,7 +656,7 @@ OPTIONS
|
|
|
735
656
|
-t, --tenant=tenant tenant
|
|
736
657
|
```
|
|
737
658
|
|
|
738
|
-
_See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
659
|
+
_See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/setup-benchmark.js)_
|
|
739
660
|
|
|
740
661
|
## `saltcorn test-plugin PATH`
|
|
741
662
|
|
|
@@ -753,7 +674,7 @@ DESCRIPTION
|
|
|
753
674
|
Extra documentation goes here
|
|
754
675
|
```
|
|
755
676
|
|
|
756
|
-
_See code: [src/commands/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
677
|
+
_See code: [src/commands/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/test-plugin.js)_
|
|
757
678
|
|
|
758
679
|
## `saltcorn transform-field EXPRESSION FIELD TABLE [TENANT]`
|
|
759
680
|
|
|
@@ -770,5 +691,5 @@ ARGUMENTS
|
|
|
770
691
|
TENANT tenant name
|
|
771
692
|
```
|
|
772
693
|
|
|
773
|
-
_See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.
|
|
694
|
+
_See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v0.7.3-beta.6/src/commands/transform-field.js)_
|
|
774
695
|
<!-- commandsstop -->
|