@saltcorn/cli 1.1.0-beta.14 → 1.1.0-beta.21
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 +67 -46
- package/npm-shrinkwrap.json +311 -181
- package/oclif.manifest.json +27 -1
- package/package.json +8 -8
- package/src/commands/dev/release-resume.js +212 -0
- package/src/commands/dev/release.js +10 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ $ npm install -g @saltcorn/cli
|
|
|
20
20
|
$ saltcorn COMMAND
|
|
21
21
|
running command...
|
|
22
22
|
$ saltcorn (--version)
|
|
23
|
-
@saltcorn/cli/1.1.0-beta.
|
|
23
|
+
@saltcorn/cli/1.1.0-beta.21 linux-x64 node-v22.12.0
|
|
24
24
|
$ saltcorn --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ saltcorn COMMAND
|
|
@@ -46,6 +46,7 @@ USAGE
|
|
|
46
46
|
* [`saltcorn saltcorn dev:plugin-test -d [PATH_TO_LOCAL_PLUGIN]/statistics -f test-backup.zip`](#saltcorn-saltcorn-devplugin-test--d-path_to_local_pluginstatistics--f-test-backupzip)
|
|
47
47
|
* [`saltcorn dev:post-release [TASK]`](#saltcorn-devpost-release-task)
|
|
48
48
|
* [`saltcorn dev:release VERSION`](#saltcorn-devrelease-version)
|
|
49
|
+
* [`saltcorn dev:release-resume VERSION`](#saltcorn-devrelease-resume-version)
|
|
49
50
|
* [`saltcorn dev:test-plugin PATH`](#saltcorn-devtest-plugin-path)
|
|
50
51
|
* [`saltcorn fixtures`](#saltcorn-fixtures)
|
|
51
52
|
* [`saltcorn get-cfg [KEY]`](#saltcorn-get-cfg-key)
|
|
@@ -93,7 +94,7 @@ DESCRIPTION
|
|
|
93
94
|
Add Saltcorn schema to existing database
|
|
94
95
|
```
|
|
95
96
|
|
|
96
|
-
_See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
97
|
+
_See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/add-schema.js)_
|
|
97
98
|
|
|
98
99
|
## `saltcorn backup`
|
|
99
100
|
|
|
@@ -114,7 +115,7 @@ DESCRIPTION
|
|
|
114
115
|
Backup the PostgreSQL database to a file with pg_dump or saltcorn backup zip
|
|
115
116
|
```
|
|
116
117
|
|
|
117
|
-
_See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
118
|
+
_See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/backup.js)_
|
|
118
119
|
|
|
119
120
|
## `saltcorn build-app`
|
|
120
121
|
|
|
@@ -161,7 +162,7 @@ DESCRIPTION
|
|
|
161
162
|
Build mobile app
|
|
162
163
|
```
|
|
163
164
|
|
|
164
|
-
_See code: [src/commands/build-app.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
165
|
+
_See code: [src/commands/build-app.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/build-app.js)_
|
|
165
166
|
|
|
166
167
|
## `saltcorn build-cordova-builder`
|
|
167
168
|
|
|
@@ -178,7 +179,7 @@ DESCRIPTION
|
|
|
178
179
|
Build the 'saltcorn/cordova-builder' docker image
|
|
179
180
|
```
|
|
180
181
|
|
|
181
|
-
_See code: [src/commands/build-cordova-builder.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
182
|
+
_See code: [src/commands/build-cordova-builder.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/build-cordova-builder.js)_
|
|
182
183
|
|
|
183
184
|
## `saltcorn configuration-check`
|
|
184
185
|
|
|
@@ -195,7 +196,7 @@ DESCRIPTION
|
|
|
195
196
|
Check configuration
|
|
196
197
|
```
|
|
197
198
|
|
|
198
|
-
_See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
199
|
+
_See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/configuration-check.js)_
|
|
199
200
|
|
|
200
201
|
## `saltcorn configuration-check-backups FILES`
|
|
201
202
|
|
|
@@ -215,7 +216,7 @@ DESCRIPTION
|
|
|
215
216
|
Check configuration
|
|
216
217
|
```
|
|
217
218
|
|
|
218
|
-
_See code: [src/commands/configuration-check-backups.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
219
|
+
_See code: [src/commands/configuration-check-backups.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/configuration-check-backups.js)_
|
|
219
220
|
|
|
220
221
|
## `saltcorn create-tenant TENANT`
|
|
221
222
|
|
|
@@ -237,7 +238,7 @@ DESCRIPTION
|
|
|
237
238
|
Create a tenant
|
|
238
239
|
```
|
|
239
240
|
|
|
240
|
-
_See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
241
|
+
_See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/create-tenant.js)_
|
|
241
242
|
|
|
242
243
|
## `saltcorn create-user`
|
|
243
244
|
|
|
@@ -258,7 +259,7 @@ DESCRIPTION
|
|
|
258
259
|
Create a new user
|
|
259
260
|
```
|
|
260
261
|
|
|
261
|
-
_See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
262
|
+
_See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/create-user.js)_
|
|
262
263
|
|
|
263
264
|
## `saltcorn delete-tenants`
|
|
264
265
|
|
|
@@ -272,7 +273,7 @@ DESCRIPTION
|
|
|
272
273
|
Delete inactive tenants
|
|
273
274
|
```
|
|
274
275
|
|
|
275
|
-
_See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
276
|
+
_See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/delete-tenants.js)_
|
|
276
277
|
|
|
277
278
|
## `saltcorn delete-user USER_EMAIL`
|
|
278
279
|
|
|
@@ -295,7 +296,7 @@ DESCRIPTION
|
|
|
295
296
|
Command deletes the user specified by USER_EMAIL.
|
|
296
297
|
```
|
|
297
298
|
|
|
298
|
-
_See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
299
|
+
_See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/delete-user.js)_
|
|
299
300
|
|
|
300
301
|
## `saltcorn dev:localize-plugin PLUGIN [PATH]`
|
|
301
302
|
|
|
@@ -317,7 +318,7 @@ DESCRIPTION
|
|
|
317
318
|
Convert plugin to local plugin
|
|
318
319
|
```
|
|
319
320
|
|
|
320
|
-
_See code: [src/commands/dev/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
321
|
+
_See code: [src/commands/dev/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/dev/localize-plugin.js)_
|
|
321
322
|
|
|
322
323
|
## `saltcorn make-migration`
|
|
323
324
|
|
|
@@ -334,7 +335,7 @@ DESCRIPTION
|
|
|
334
335
|
unless you are a developer.
|
|
335
336
|
```
|
|
336
337
|
|
|
337
|
-
_See code: [src/commands/dev/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
338
|
+
_See code: [src/commands/dev/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/dev/make-migration.js)_
|
|
338
339
|
|
|
339
340
|
## `saltcorn saltcorn dev:plugin-test -d [PATH_TO_LOCAL_PLUGIN]/statistics -f test-backup.zip`
|
|
340
341
|
|
|
@@ -355,7 +356,7 @@ DESCRIPTION
|
|
|
355
356
|
Install a plugin, spawn 'npm run test' in the install directory and check the return code.
|
|
356
357
|
```
|
|
357
358
|
|
|
358
|
-
_See code: [src/commands/dev/plugin-test.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
359
|
+
_See code: [src/commands/dev/plugin-test.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/dev/plugin-test.js)_
|
|
359
360
|
|
|
360
361
|
## `saltcorn dev:post-release [TASK]`
|
|
361
362
|
|
|
@@ -372,7 +373,7 @@ DESCRIPTION
|
|
|
372
373
|
Post-release tasks: docker and vagrant builds
|
|
373
374
|
```
|
|
374
375
|
|
|
375
|
-
_See code: [src/commands/dev/post-release.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
376
|
+
_See code: [src/commands/dev/post-release.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/dev/post-release.js)_
|
|
376
377
|
|
|
377
378
|
## `saltcorn dev:release VERSION`
|
|
378
379
|
|
|
@@ -392,7 +393,27 @@ DESCRIPTION
|
|
|
392
393
|
Release a new saltcorn version
|
|
393
394
|
```
|
|
394
395
|
|
|
395
|
-
_See code: [src/commands/dev/release.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
396
|
+
_See code: [src/commands/dev/release.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/dev/release.js)_
|
|
397
|
+
|
|
398
|
+
## `saltcorn dev:release-resume VERSION`
|
|
399
|
+
|
|
400
|
+
Release a new saltcorn version
|
|
401
|
+
|
|
402
|
+
```
|
|
403
|
+
USAGE
|
|
404
|
+
$ saltcorn dev:release-resume VERSION [-t <value>]
|
|
405
|
+
|
|
406
|
+
ARGUMENTS
|
|
407
|
+
VERSION New version number
|
|
408
|
+
|
|
409
|
+
FLAGS
|
|
410
|
+
-t, --tag=<value> NPM tag
|
|
411
|
+
|
|
412
|
+
DESCRIPTION
|
|
413
|
+
Release a new saltcorn version
|
|
414
|
+
```
|
|
415
|
+
|
|
416
|
+
_See code: [src/commands/dev/release-resume.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/dev/release-resume.js)_
|
|
396
417
|
|
|
397
418
|
## `saltcorn dev:test-plugin PATH`
|
|
398
419
|
|
|
@@ -411,7 +432,7 @@ DESCRIPTION
|
|
|
411
432
|
Extra documentation goes here
|
|
412
433
|
```
|
|
413
434
|
|
|
414
|
-
_See code: [src/commands/dev/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
435
|
+
_See code: [src/commands/dev/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/dev/test-plugin.js)_
|
|
415
436
|
|
|
416
437
|
## `saltcorn fixtures`
|
|
417
438
|
|
|
@@ -431,7 +452,7 @@ DESCRIPTION
|
|
|
431
452
|
This manual step it is never required for users and rarely required for developers
|
|
432
453
|
```
|
|
433
454
|
|
|
434
|
-
_See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
455
|
+
_See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/fixtures.js)_
|
|
435
456
|
|
|
436
457
|
## `saltcorn get-cfg [KEY]`
|
|
437
458
|
|
|
@@ -452,7 +473,7 @@ DESCRIPTION
|
|
|
452
473
|
Get a configuration value. The value is printed to stdout as a JSON value
|
|
453
474
|
```
|
|
454
475
|
|
|
455
|
-
_See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
476
|
+
_See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/get-cfg.js)_
|
|
456
477
|
|
|
457
478
|
## `saltcorn info`
|
|
458
479
|
|
|
@@ -475,7 +496,7 @@ ALIASES
|
|
|
475
496
|
$ saltcorn paths
|
|
476
497
|
```
|
|
477
498
|
|
|
478
|
-
_See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
499
|
+
_See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/info.js)_
|
|
479
500
|
|
|
480
501
|
## `saltcorn inspect TYPE [NAME]`
|
|
481
502
|
|
|
@@ -496,7 +517,7 @@ DESCRIPTION
|
|
|
496
517
|
Inspect an entity's JSON representation, or list entities
|
|
497
518
|
```
|
|
498
519
|
|
|
499
|
-
_See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
520
|
+
_See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/inspect.js)_
|
|
500
521
|
|
|
501
522
|
## `saltcorn install-pack`
|
|
502
523
|
|
|
@@ -515,7 +536,7 @@ DESCRIPTION
|
|
|
515
536
|
Install a pack or restore a snapshot
|
|
516
537
|
```
|
|
517
538
|
|
|
518
|
-
_See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
539
|
+
_See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/install-pack.js)_
|
|
519
540
|
|
|
520
541
|
## `saltcorn install-plugin`
|
|
521
542
|
|
|
@@ -535,7 +556,7 @@ DESCRIPTION
|
|
|
535
556
|
Install a plugin
|
|
536
557
|
```
|
|
537
558
|
|
|
538
|
-
_See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
559
|
+
_See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/install-plugin.js)_
|
|
539
560
|
|
|
540
561
|
## `saltcorn list-tenants`
|
|
541
562
|
|
|
@@ -554,7 +575,7 @@ DESCRIPTION
|
|
|
554
575
|
List tenants in CSV format
|
|
555
576
|
```
|
|
556
577
|
|
|
557
|
-
_See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
578
|
+
_See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/list-tenants.js)_
|
|
558
579
|
|
|
559
580
|
## `saltcorn list-triggers`
|
|
560
581
|
|
|
@@ -573,7 +594,7 @@ DESCRIPTION
|
|
|
573
594
|
List triggers
|
|
574
595
|
```
|
|
575
596
|
|
|
576
|
-
_See code: [src/commands/list-triggers.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
597
|
+
_See code: [src/commands/list-triggers.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/list-triggers.js)_
|
|
577
598
|
|
|
578
599
|
## `saltcorn list-users`
|
|
579
600
|
|
|
@@ -591,7 +612,7 @@ DESCRIPTION
|
|
|
591
612
|
List users
|
|
592
613
|
```
|
|
593
614
|
|
|
594
|
-
_See code: [src/commands/list-users.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
615
|
+
_See code: [src/commands/list-users.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/list-users.js)_
|
|
595
616
|
|
|
596
617
|
## `saltcorn saltcorn migrate`
|
|
597
618
|
|
|
@@ -614,7 +635,7 @@ DESCRIPTION
|
|
|
614
635
|
servers and need to control when the migrations are run.
|
|
615
636
|
```
|
|
616
637
|
|
|
617
|
-
_See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
638
|
+
_See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/migrate.js)_
|
|
618
639
|
|
|
619
640
|
## `saltcorn modify-user USER_EMAIL`
|
|
620
641
|
|
|
@@ -645,7 +666,7 @@ DESCRIPTION
|
|
|
645
666
|
NOTE that -a and -r role (--role=role) can give conflict.
|
|
646
667
|
```
|
|
647
668
|
|
|
648
|
-
_See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
669
|
+
_See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/modify-user.js)_
|
|
649
670
|
|
|
650
671
|
## `saltcorn paths`
|
|
651
672
|
|
|
@@ -697,7 +718,7 @@ EXAMPLES
|
|
|
697
718
|
plugins -u -f - force plugin update
|
|
698
719
|
```
|
|
699
720
|
|
|
700
|
-
_See code: [src/commands/plugins.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
721
|
+
_See code: [src/commands/plugins.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/plugins.js)_
|
|
701
722
|
|
|
702
723
|
## `saltcorn reset-schema`
|
|
703
724
|
|
|
@@ -717,7 +738,7 @@ DESCRIPTION
|
|
|
717
738
|
This will delete all existing information
|
|
718
739
|
```
|
|
719
740
|
|
|
720
|
-
_See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
741
|
+
_See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/reset-schema.js)_
|
|
721
742
|
|
|
722
743
|
## `saltcorn restore FILE`
|
|
723
744
|
|
|
@@ -737,7 +758,7 @@ DESCRIPTION
|
|
|
737
758
|
Restore a previously backed up database (zip or sqlc format)
|
|
738
759
|
```
|
|
739
760
|
|
|
740
|
-
_See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
761
|
+
_See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/restore.js)_
|
|
741
762
|
|
|
742
763
|
## `saltcorn rm-tenant`
|
|
743
764
|
|
|
@@ -757,7 +778,7 @@ DESCRIPTION
|
|
|
757
778
|
It recommended to make backup of tenant before perform this command.
|
|
758
779
|
```
|
|
759
780
|
|
|
760
|
-
_See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
781
|
+
_See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/rm-tenant.js)_
|
|
761
782
|
|
|
762
783
|
## `saltcorn run-benchmark [BASEURL]`
|
|
763
784
|
|
|
@@ -779,7 +800,7 @@ DESCRIPTION
|
|
|
779
800
|
Run benchmark
|
|
780
801
|
```
|
|
781
802
|
|
|
782
|
-
_See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
803
|
+
_See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/run-benchmark.js)_
|
|
783
804
|
|
|
784
805
|
## `saltcorn run-js`
|
|
785
806
|
|
|
@@ -798,7 +819,7 @@ DESCRIPTION
|
|
|
798
819
|
Run javascript code
|
|
799
820
|
```
|
|
800
821
|
|
|
801
|
-
_See code: [src/commands/run-js.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
822
|
+
_See code: [src/commands/run-js.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/run-js.js)_
|
|
802
823
|
|
|
803
824
|
## `saltcorn run-sql`
|
|
804
825
|
|
|
@@ -817,7 +838,7 @@ DESCRIPTION
|
|
|
817
838
|
Run sql expression
|
|
818
839
|
```
|
|
819
840
|
|
|
820
|
-
_See code: [src/commands/run-sql.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
841
|
+
_See code: [src/commands/run-sql.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/run-sql.js)_
|
|
821
842
|
|
|
822
843
|
## `saltcorn run-tests [PACKAGE]`
|
|
823
844
|
|
|
@@ -844,7 +865,7 @@ DESCRIPTION
|
|
|
844
865
|
Run test suites
|
|
845
866
|
```
|
|
846
867
|
|
|
847
|
-
_See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
868
|
+
_See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/run-tests.js)_
|
|
848
869
|
|
|
849
870
|
## `saltcorn run-trigger TRIGGER`
|
|
850
871
|
|
|
@@ -864,7 +885,7 @@ DESCRIPTION
|
|
|
864
885
|
Run a trigger
|
|
865
886
|
```
|
|
866
887
|
|
|
867
|
-
_See code: [src/commands/run-trigger.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
888
|
+
_See code: [src/commands/run-trigger.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/run-trigger.js)_
|
|
868
889
|
|
|
869
890
|
## `saltcorn scheduler`
|
|
870
891
|
|
|
@@ -881,7 +902,7 @@ DESCRIPTION
|
|
|
881
902
|
Run the Saltcorn scheduler
|
|
882
903
|
```
|
|
883
904
|
|
|
884
|
-
_See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
905
|
+
_See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/scheduler.js)_
|
|
885
906
|
|
|
886
907
|
## `saltcorn serve`
|
|
887
908
|
|
|
@@ -905,7 +926,7 @@ DESCRIPTION
|
|
|
905
926
|
Start the Saltcorn server
|
|
906
927
|
```
|
|
907
928
|
|
|
908
|
-
_See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
929
|
+
_See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/serve.js)_
|
|
909
930
|
|
|
910
931
|
## `saltcorn set-cfg [KEY] [VALUE]`
|
|
911
932
|
|
|
@@ -930,7 +951,7 @@ DESCRIPTION
|
|
|
930
951
|
stored as a string.
|
|
931
952
|
```
|
|
932
953
|
|
|
933
|
-
_See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
954
|
+
_See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/set-cfg.js)_
|
|
934
955
|
|
|
935
956
|
## `saltcorn set-daily-time [MINS]`
|
|
936
957
|
|
|
@@ -950,7 +971,7 @@ DESCRIPTION
|
|
|
950
971
|
Set the time the default daily event will run, offset in minutes from the current time. Restart required.
|
|
951
972
|
```
|
|
952
973
|
|
|
953
|
-
_See code: [src/commands/set-daily-time.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
974
|
+
_See code: [src/commands/set-daily-time.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/set-daily-time.js)_
|
|
954
975
|
|
|
955
976
|
## `saltcorn setup`
|
|
956
977
|
|
|
@@ -970,7 +991,7 @@ DESCRIPTION
|
|
|
970
991
|
configuration file
|
|
971
992
|
```
|
|
972
993
|
|
|
973
|
-
_See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
994
|
+
_See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/setup.js)_
|
|
974
995
|
|
|
975
996
|
## `saltcorn setup-benchmark`
|
|
976
997
|
|
|
@@ -988,7 +1009,7 @@ DESCRIPTION
|
|
|
988
1009
|
Setup an instance for benchmarking
|
|
989
1010
|
```
|
|
990
1011
|
|
|
991
|
-
_See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
1012
|
+
_See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/setup-benchmark.js)_
|
|
992
1013
|
|
|
993
1014
|
## `saltcorn sync-upload-data`
|
|
994
1015
|
|
|
@@ -1009,7 +1030,7 @@ DESCRIPTION
|
|
|
1009
1030
|
Runs a sync for data supplied by the mobile app
|
|
1010
1031
|
```
|
|
1011
1032
|
|
|
1012
|
-
_See code: [src/commands/sync-upload-data.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
1033
|
+
_See code: [src/commands/sync-upload-data.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/sync-upload-data.js)_
|
|
1013
1034
|
|
|
1014
1035
|
## `saltcorn take-snapshot`
|
|
1015
1036
|
|
|
@@ -1027,7 +1048,7 @@ DESCRIPTION
|
|
|
1027
1048
|
Print a current snapshout to stdout
|
|
1028
1049
|
```
|
|
1029
1050
|
|
|
1030
|
-
_See code: [src/commands/take-snapshot.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
1051
|
+
_See code: [src/commands/take-snapshot.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/take-snapshot.js)_
|
|
1031
1052
|
|
|
1032
1053
|
## `saltcorn transform-field EXPRESSION FIELD TABLE [TENANT]`
|
|
1033
1054
|
|
|
@@ -1047,5 +1068,5 @@ DESCRIPTION
|
|
|
1047
1068
|
transform an existing field by applying a calculated expression
|
|
1048
1069
|
```
|
|
1049
1070
|
|
|
1050
|
-
_See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.
|
|
1071
|
+
_See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v1.1.0-beta.21/packages/saltcorn-cli/src/commands/transform-field.js)_
|
|
1051
1072
|
<!-- commandsstop -->
|