@saltcorn/cli 0.8.8-beta.3 → 0.8.8-beta.4
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 +66 -43
- package/npm-shrinkwrap.json +341 -341
- package/oclif.manifest.json +1 -1
- package/package.json +6 -6
- package/src/commands/build-app.js +20 -3
- package/src/commands/info.js +1 -11
- package/src/commands/list-tenants.js +6 -10
- package/src/commands/list-triggers.js +7 -8
- package/src/commands/list-users.js +77 -0
- package/src/common.js +26 -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.8.8-beta.
|
|
23
|
+
@saltcorn/cli/0.8.8-beta.4 linux-x64 node-v18.7.0
|
|
24
24
|
$ saltcorn --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ saltcorn COMMAND
|
|
@@ -55,6 +55,7 @@ USAGE
|
|
|
55
55
|
* [`saltcorn install-plugin`](#saltcorn-install-plugin)
|
|
56
56
|
* [`saltcorn list-tenants`](#saltcorn-list-tenants)
|
|
57
57
|
* [`saltcorn list-triggers`](#saltcorn-list-triggers)
|
|
58
|
+
* [`saltcorn list-users`](#saltcorn-list-users)
|
|
58
59
|
* [`saltcorn saltcorn migrate`](#saltcorn-saltcorn-migrate)
|
|
59
60
|
* [`saltcorn modify-user USER_EMAIL`](#saltcorn-modify-user-user_email)
|
|
60
61
|
* [`saltcorn plugins`](#saltcorn-plugins)
|
|
@@ -87,7 +88,7 @@ OPTIONS
|
|
|
87
88
|
-f, --force force command execution
|
|
88
89
|
```
|
|
89
90
|
|
|
90
|
-
_See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
91
|
+
_See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/add-schema.js)_
|
|
91
92
|
|
|
92
93
|
## `saltcorn backup`
|
|
93
94
|
|
|
@@ -104,7 +105,7 @@ OPTIONS
|
|
|
104
105
|
-z, --zip Backup public in saltcorn zip format
|
|
105
106
|
```
|
|
106
107
|
|
|
107
|
-
_See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
108
|
+
_See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/backup.js)_
|
|
108
109
|
|
|
109
110
|
## `saltcorn build-app`
|
|
110
111
|
|
|
@@ -135,9 +136,14 @@ OPTIONS
|
|
|
135
136
|
|
|
136
137
|
--appVersion=appVersion Version of the mobile app (default 1.0.0)
|
|
137
138
|
|
|
139
|
+
--autoPublicLogin Show public entry points before the login as a public user.
|
|
140
|
+
|
|
138
141
|
--buildForEmulator build without '--device', generates no .ipa file so that iOS apps can be
|
|
139
142
|
build without developer accounts
|
|
140
143
|
|
|
144
|
+
--includedPlugins=includedPlugins Names of plugins that should be bundled into the app.If empty, all installed
|
|
145
|
+
modules are used.
|
|
146
|
+
|
|
141
147
|
--splashPage=splashPage Name of a page that should be shown while the app is loading.
|
|
142
148
|
|
|
143
149
|
--synchedTables=synchedTables Table names for which the offline should be synchronized with the saltcorn
|
|
@@ -147,7 +153,7 @@ OPTIONS
|
|
|
147
153
|
tenant
|
|
148
154
|
```
|
|
149
155
|
|
|
150
|
-
_See code: [src/commands/build-app.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
156
|
+
_See code: [src/commands/build-app.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/build-app.js)_
|
|
151
157
|
|
|
152
158
|
## `saltcorn build-cordova-builder`
|
|
153
159
|
|
|
@@ -161,7 +167,7 @@ OPTIONS
|
|
|
161
167
|
--buildClean run a clean build with --no-cache
|
|
162
168
|
```
|
|
163
169
|
|
|
164
|
-
_See code: [src/commands/build-cordova-builder.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
170
|
+
_See code: [src/commands/build-cordova-builder.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/build-cordova-builder.js)_
|
|
165
171
|
|
|
166
172
|
## `saltcorn configuration-check`
|
|
167
173
|
|
|
@@ -175,7 +181,7 @@ OPTIONS
|
|
|
175
181
|
-t, --tenant=tenant tenant
|
|
176
182
|
```
|
|
177
183
|
|
|
178
|
-
_See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
184
|
+
_See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/configuration-check.js)_
|
|
179
185
|
|
|
180
186
|
## `saltcorn configuration-check-backups FILES`
|
|
181
187
|
|
|
@@ -192,7 +198,7 @@ OPTIONS
|
|
|
192
198
|
-d, --destructive destructive
|
|
193
199
|
```
|
|
194
200
|
|
|
195
|
-
_See code: [src/commands/configuration-check-backups.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
201
|
+
_See code: [src/commands/configuration-check-backups.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/configuration-check-backups.js)_
|
|
196
202
|
|
|
197
203
|
## `saltcorn create-tenant TENANT`
|
|
198
204
|
|
|
@@ -211,7 +217,7 @@ OPTIONS
|
|
|
211
217
|
--url=url Url of tenant
|
|
212
218
|
```
|
|
213
219
|
|
|
214
|
-
_See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
220
|
+
_See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/create-tenant.js)_
|
|
215
221
|
|
|
216
222
|
## `saltcorn create-user`
|
|
217
223
|
|
|
@@ -229,7 +235,7 @@ OPTIONS
|
|
|
229
235
|
-t, --tenant=tenant tenant
|
|
230
236
|
```
|
|
231
237
|
|
|
232
|
-
_See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
238
|
+
_See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/create-user.js)_
|
|
233
239
|
|
|
234
240
|
## `saltcorn delete-tenants`
|
|
235
241
|
|
|
@@ -240,7 +246,7 @@ USAGE
|
|
|
240
246
|
$ saltcorn delete-tenants
|
|
241
247
|
```
|
|
242
248
|
|
|
243
|
-
_See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
249
|
+
_See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/delete-tenants.js)_
|
|
244
250
|
|
|
245
251
|
## `saltcorn delete-user USER_EMAIL`
|
|
246
252
|
|
|
@@ -261,7 +267,7 @@ DESCRIPTION
|
|
|
261
267
|
Command deletes the user specified by USER_EMAIL.
|
|
262
268
|
```
|
|
263
269
|
|
|
264
|
-
_See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
270
|
+
_See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/delete-user.js)_
|
|
265
271
|
|
|
266
272
|
## `saltcorn dev:localize-plugin PLUGIN [PATH]`
|
|
267
273
|
|
|
@@ -280,7 +286,7 @@ OPTIONS
|
|
|
280
286
|
-u, --unlocalize Unlocalize plugin (local to npm)
|
|
281
287
|
```
|
|
282
288
|
|
|
283
|
-
_See code: [src/commands/dev/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
289
|
+
_See code: [src/commands/dev/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/dev/localize-plugin.js)_
|
|
284
290
|
|
|
285
291
|
## `saltcorn make-migration`
|
|
286
292
|
|
|
@@ -296,7 +302,7 @@ DESCRIPTION
|
|
|
296
302
|
unless you are a developer.
|
|
297
303
|
```
|
|
298
304
|
|
|
299
|
-
_See code: [src/commands/dev/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
305
|
+
_See code: [src/commands/dev/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/dev/make-migration.js)_
|
|
300
306
|
|
|
301
307
|
## `saltcorn dev:post-release [TASK]`
|
|
302
308
|
|
|
@@ -310,7 +316,7 @@ ARGUMENTS
|
|
|
310
316
|
TASK (docker|vagrant|all|none) What to do
|
|
311
317
|
```
|
|
312
318
|
|
|
313
|
-
_See code: [src/commands/dev/post-release.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
319
|
+
_See code: [src/commands/dev/post-release.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/dev/post-release.js)_
|
|
314
320
|
|
|
315
321
|
## `saltcorn dev:release VERSION`
|
|
316
322
|
|
|
@@ -324,7 +330,7 @@ ARGUMENTS
|
|
|
324
330
|
VERSION New version number
|
|
325
331
|
```
|
|
326
332
|
|
|
327
|
-
_See code: [src/commands/dev/release.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
333
|
+
_See code: [src/commands/dev/release.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/dev/release.js)_
|
|
328
334
|
|
|
329
335
|
## `saltcorn dev:test-plugin PATH`
|
|
330
336
|
|
|
@@ -342,7 +348,7 @@ DESCRIPTION
|
|
|
342
348
|
Extra documentation goes here
|
|
343
349
|
```
|
|
344
350
|
|
|
345
|
-
_See code: [src/commands/dev/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
351
|
+
_See code: [src/commands/dev/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/dev/test-plugin.js)_
|
|
346
352
|
|
|
347
353
|
## `saltcorn fixtures`
|
|
348
354
|
|
|
@@ -361,7 +367,7 @@ DESCRIPTION
|
|
|
361
367
|
This manual step it is never required for users and rarely required for developers
|
|
362
368
|
```
|
|
363
369
|
|
|
364
|
-
_See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
370
|
+
_See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/fixtures.js)_
|
|
365
371
|
|
|
366
372
|
## `saltcorn get-cfg [KEY]`
|
|
367
373
|
|
|
@@ -379,7 +385,7 @@ OPTIONS
|
|
|
379
385
|
-t, --tenant=tenant tenant
|
|
380
386
|
```
|
|
381
387
|
|
|
382
|
-
_See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
388
|
+
_See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/get-cfg.js)_
|
|
383
389
|
|
|
384
390
|
## `saltcorn help [COMMAND]`
|
|
385
391
|
|
|
@@ -417,7 +423,7 @@ ALIASES
|
|
|
417
423
|
$ saltcorn paths
|
|
418
424
|
```
|
|
419
425
|
|
|
420
|
-
_See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
426
|
+
_See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/info.js)_
|
|
421
427
|
|
|
422
428
|
## `saltcorn inspect TYPE [NAME]`
|
|
423
429
|
|
|
@@ -435,7 +441,7 @@ OPTIONS
|
|
|
435
441
|
-t, --tenant=tenant tenant
|
|
436
442
|
```
|
|
437
443
|
|
|
438
|
-
_See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
444
|
+
_See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/inspect.js)_
|
|
439
445
|
|
|
440
446
|
## `saltcorn install-pack`
|
|
441
447
|
|
|
@@ -451,7 +457,7 @@ OPTIONS
|
|
|
451
457
|
-t, --tenant=tenant tenant
|
|
452
458
|
```
|
|
453
459
|
|
|
454
|
-
_See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
460
|
+
_See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/install-pack.js)_
|
|
455
461
|
|
|
456
462
|
## `saltcorn install-plugin`
|
|
457
463
|
|
|
@@ -467,7 +473,7 @@ OPTIONS
|
|
|
467
473
|
-t, --tenant=tenant tenant
|
|
468
474
|
```
|
|
469
475
|
|
|
470
|
-
_See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
476
|
+
_See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/install-plugin.js)_
|
|
471
477
|
|
|
472
478
|
## `saltcorn list-tenants`
|
|
473
479
|
|
|
@@ -478,11 +484,12 @@ USAGE
|
|
|
478
484
|
$ saltcorn list-tenants
|
|
479
485
|
|
|
480
486
|
OPTIONS
|
|
487
|
+
-j, --json json format
|
|
481
488
|
-t, --tenant=tenant tenant
|
|
482
489
|
-v, --verbose verbose output
|
|
483
490
|
```
|
|
484
491
|
|
|
485
|
-
_See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
492
|
+
_See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/list-tenants.js)_
|
|
486
493
|
|
|
487
494
|
## `saltcorn list-triggers`
|
|
488
495
|
|
|
@@ -492,12 +499,28 @@ List triggers
|
|
|
492
499
|
USAGE
|
|
493
500
|
$ saltcorn list-triggers
|
|
494
501
|
|
|
502
|
+
OPTIONS
|
|
503
|
+
-j, --json json format
|
|
504
|
+
-t, --tenant=tenant tenant
|
|
505
|
+
-v, --verbose verbose output
|
|
506
|
+
```
|
|
507
|
+
|
|
508
|
+
_See code: [src/commands/list-triggers.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/list-triggers.js)_
|
|
509
|
+
|
|
510
|
+
## `saltcorn list-users`
|
|
511
|
+
|
|
512
|
+
List users
|
|
513
|
+
|
|
514
|
+
```
|
|
515
|
+
USAGE
|
|
516
|
+
$ saltcorn list-users
|
|
517
|
+
|
|
495
518
|
OPTIONS
|
|
496
519
|
-t, --tenant=tenant tenant
|
|
497
520
|
-v, --verbose verbose output
|
|
498
521
|
```
|
|
499
522
|
|
|
500
|
-
_See code: [src/commands/list-
|
|
523
|
+
_See code: [src/commands/list-users.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/list-users.js)_
|
|
501
524
|
|
|
502
525
|
## `saltcorn saltcorn migrate`
|
|
503
526
|
|
|
@@ -519,7 +542,7 @@ DESCRIPTION
|
|
|
519
542
|
servers and need to control when the migrations are run.
|
|
520
543
|
```
|
|
521
544
|
|
|
522
|
-
_See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
545
|
+
_See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/migrate.js)_
|
|
523
546
|
|
|
524
547
|
## `saltcorn modify-user USER_EMAIL`
|
|
525
548
|
|
|
@@ -548,7 +571,7 @@ DESCRIPTION
|
|
|
548
571
|
NOTE that -a and -r role (--role=role) can give conflict.
|
|
549
572
|
```
|
|
550
573
|
|
|
551
|
-
_See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
574
|
+
_See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/modify-user.js)_
|
|
552
575
|
|
|
553
576
|
## `saltcorn plugins`
|
|
554
577
|
|
|
@@ -575,7 +598,7 @@ EXAMPLES
|
|
|
575
598
|
plugins -u -f - force plugin update
|
|
576
599
|
```
|
|
577
600
|
|
|
578
|
-
_See code: [src/commands/plugins.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
601
|
+
_See code: [src/commands/plugins.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/plugins.js)_
|
|
579
602
|
|
|
580
603
|
## `saltcorn reset-schema`
|
|
581
604
|
|
|
@@ -594,7 +617,7 @@ DESCRIPTION
|
|
|
594
617
|
This will delete all existing information
|
|
595
618
|
```
|
|
596
619
|
|
|
597
|
-
_See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
620
|
+
_See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/reset-schema.js)_
|
|
598
621
|
|
|
599
622
|
## `saltcorn restore FILE`
|
|
600
623
|
|
|
@@ -611,7 +634,7 @@ OPTIONS
|
|
|
611
634
|
-t, --tenant=tenant tenant
|
|
612
635
|
```
|
|
613
636
|
|
|
614
|
-
_See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
637
|
+
_See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/restore.js)_
|
|
615
638
|
|
|
616
639
|
## `saltcorn rm-tenant`
|
|
617
640
|
|
|
@@ -630,7 +653,7 @@ DESCRIPTION
|
|
|
630
653
|
It recommended to make backup of tenant before perform this command.
|
|
631
654
|
```
|
|
632
655
|
|
|
633
|
-
_See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
656
|
+
_See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/rm-tenant.js)_
|
|
634
657
|
|
|
635
658
|
## `saltcorn run-benchmark [BASEURL]`
|
|
636
659
|
|
|
@@ -649,7 +672,7 @@ OPTIONS
|
|
|
649
672
|
-t, --token=token API Token for reporting results
|
|
650
673
|
```
|
|
651
674
|
|
|
652
|
-
_See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
675
|
+
_See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/run-benchmark.js)_
|
|
653
676
|
|
|
654
677
|
## `saltcorn run-js`
|
|
655
678
|
|
|
@@ -665,7 +688,7 @@ OPTIONS
|
|
|
665
688
|
-t, --tenant=tenant tenant name
|
|
666
689
|
```
|
|
667
690
|
|
|
668
|
-
_See code: [src/commands/run-js.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
691
|
+
_See code: [src/commands/run-js.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/run-js.js)_
|
|
669
692
|
|
|
670
693
|
## `saltcorn run-sql`
|
|
671
694
|
|
|
@@ -681,7 +704,7 @@ OPTIONS
|
|
|
681
704
|
-t, --tenant=tenant tenant name
|
|
682
705
|
```
|
|
683
706
|
|
|
684
|
-
_See code: [src/commands/run-sql.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
707
|
+
_See code: [src/commands/run-sql.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/run-sql.js)_
|
|
685
708
|
|
|
686
709
|
## `saltcorn run-tests [PACKAGE]`
|
|
687
710
|
|
|
@@ -705,7 +728,7 @@ OPTIONS
|
|
|
705
728
|
--watchAll Watch files for changes and rerun all tests.
|
|
706
729
|
```
|
|
707
730
|
|
|
708
|
-
_See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
731
|
+
_See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/run-tests.js)_
|
|
709
732
|
|
|
710
733
|
## `saltcorn run-trigger TRIGGER`
|
|
711
734
|
|
|
@@ -722,7 +745,7 @@ OPTIONS
|
|
|
722
745
|
-t, --tenant=tenant tenant
|
|
723
746
|
```
|
|
724
747
|
|
|
725
|
-
_See code: [src/commands/run-trigger.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
748
|
+
_See code: [src/commands/run-trigger.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/run-trigger.js)_
|
|
726
749
|
|
|
727
750
|
## `saltcorn scheduler`
|
|
728
751
|
|
|
@@ -736,7 +759,7 @@ OPTIONS
|
|
|
736
759
|
-v, --verbose Verbose
|
|
737
760
|
```
|
|
738
761
|
|
|
739
|
-
_See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
762
|
+
_See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/scheduler.js)_
|
|
740
763
|
|
|
741
764
|
## `saltcorn serve`
|
|
742
765
|
|
|
@@ -757,7 +780,7 @@ OPTIONS
|
|
|
757
780
|
--subdomain_offset=subdomain_offset Number of parts to remove to access subdomain in 'multi_tenant' mode
|
|
758
781
|
```
|
|
759
782
|
|
|
760
|
-
_See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
783
|
+
_See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/serve.js)_
|
|
761
784
|
|
|
762
785
|
## `saltcorn set-cfg [KEY] [VALUE]`
|
|
763
786
|
|
|
@@ -778,7 +801,7 @@ OPTIONS
|
|
|
778
801
|
-t, --tenant=tenant tenant
|
|
779
802
|
```
|
|
780
803
|
|
|
781
|
-
_See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
804
|
+
_See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/set-cfg.js)_
|
|
782
805
|
|
|
783
806
|
## `saltcorn setup`
|
|
784
807
|
|
|
@@ -797,7 +820,7 @@ DESCRIPTION
|
|
|
797
820
|
configuration file
|
|
798
821
|
```
|
|
799
822
|
|
|
800
|
-
_See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
823
|
+
_See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/setup.js)_
|
|
801
824
|
|
|
802
825
|
## `saltcorn setup-benchmark`
|
|
803
826
|
|
|
@@ -811,7 +834,7 @@ OPTIONS
|
|
|
811
834
|
-t, --tenant=tenant tenant
|
|
812
835
|
```
|
|
813
836
|
|
|
814
|
-
_See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
837
|
+
_See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/setup-benchmark.js)_
|
|
815
838
|
|
|
816
839
|
## `saltcorn sync-upload-data`
|
|
817
840
|
|
|
@@ -828,7 +851,7 @@ OPTIONS
|
|
|
828
851
|
--userEmail=userEmail email of the user running the sync
|
|
829
852
|
```
|
|
830
853
|
|
|
831
|
-
_See code: [src/commands/sync-upload-data.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
854
|
+
_See code: [src/commands/sync-upload-data.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/sync-upload-data.js)_
|
|
832
855
|
|
|
833
856
|
## `saltcorn take-snapshot`
|
|
834
857
|
|
|
@@ -843,7 +866,7 @@ OPTIONS
|
|
|
843
866
|
-t, --tenant=tenant tenant
|
|
844
867
|
```
|
|
845
868
|
|
|
846
|
-
_See code: [src/commands/take-snapshot.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
869
|
+
_See code: [src/commands/take-snapshot.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/take-snapshot.js)_
|
|
847
870
|
|
|
848
871
|
## `saltcorn transform-field EXPRESSION FIELD TABLE [TENANT]`
|
|
849
872
|
|
|
@@ -860,5 +883,5 @@ ARGUMENTS
|
|
|
860
883
|
TENANT tenant name
|
|
861
884
|
```
|
|
862
885
|
|
|
863
|
-
_See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.
|
|
886
|
+
_See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v0.8.8-beta.4/src/commands/transform-field.js)_
|
|
864
887
|
<!-- commandsstop -->
|