@saltcorn/cli 1.3.0 → 1.3.1-beta.1
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 +52 -50
- package/npm-shrinkwrap.json +1428 -525
- package/oclif.manifest.json +8 -1
- package/package.json +9 -9
- package/src/commands/build-app.js +7 -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 (--version)
|
|
23
|
-
@saltcorn/cli/1.3.
|
|
23
|
+
@saltcorn/cli/1.3.1-beta.1 linux-x64 node-v20.18.1
|
|
24
24
|
$ saltcorn --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ saltcorn COMMAND
|
|
@@ -96,7 +96,7 @@ DESCRIPTION
|
|
|
96
96
|
Add Saltcorn schema to existing database
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
-
_See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
99
|
+
_See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/add-schema.js)_
|
|
100
100
|
|
|
101
101
|
## `saltcorn backup`
|
|
102
102
|
|
|
@@ -117,7 +117,7 @@ DESCRIPTION
|
|
|
117
117
|
Backup the PostgreSQL database to a file with pg_dump or saltcorn backup zip
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
-
_See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
120
|
+
_See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/backup.js)_
|
|
121
121
|
|
|
122
122
|
## `saltcorn build-app`
|
|
123
123
|
|
|
@@ -130,7 +130,7 @@ USAGE
|
|
|
130
130
|
[-c <value>] [-u <value>] [--appName <value>] [--appId <value>] [--appVersion <value>] [--appIcon <value>] [-s
|
|
131
131
|
<value>] [--splashPage <value>] [--autoPublicLogin] [--allowOfflineMode] [--provisioningProfile <value>]
|
|
132
132
|
[--shareExtensionProvisioningProfile <value>] [--buildType <value>] [--androidKeystore <value>]
|
|
133
|
-
[--androidKeyStoreAlias <value>] [--androidKeystorePassword <value>]
|
|
133
|
+
[--androidKeyStoreAlias <value>] [--androidKeystorePassword <value>] [--googleServicesFile <value>]
|
|
134
134
|
|
|
135
135
|
FLAGS
|
|
136
136
|
-b, --buildDirectory=<value> A directory where the app should be build
|
|
@@ -161,6 +161,8 @@ FLAGS
|
|
|
161
161
|
--appVersion=<value> Version of the mobile app (default 0.0.1)
|
|
162
162
|
--autoPublicLogin Show public entry points before the login as a public user.
|
|
163
163
|
--buildType=<value> debug or release build
|
|
164
|
+
--googleServicesFile=<value> Path to the google-services.json file for Firebase Push Notifications
|
|
165
|
+
(Android only)
|
|
164
166
|
--includedPlugins=<value>... Names of plugins that should be bundled into the app.If empty, no
|
|
165
167
|
modules are used.
|
|
166
168
|
--provisioningProfile=<value> This profile will be used to sign your app
|
|
@@ -175,7 +177,7 @@ DESCRIPTION
|
|
|
175
177
|
Build mobile app
|
|
176
178
|
```
|
|
177
179
|
|
|
178
|
-
_See code: [src/commands/build-app.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
180
|
+
_See code: [src/commands/build-app.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/build-app.js)_
|
|
179
181
|
|
|
180
182
|
## `saltcorn build-capacitor-builder`
|
|
181
183
|
|
|
@@ -193,7 +195,7 @@ DESCRIPTION
|
|
|
193
195
|
Build the 'saltcorn/capacitor-builder' docker image or pull it from docker hub.
|
|
194
196
|
```
|
|
195
197
|
|
|
196
|
-
_See code: [src/commands/build-capacitor-builder.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
198
|
+
_See code: [src/commands/build-capacitor-builder.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/build-capacitor-builder.js)_
|
|
197
199
|
|
|
198
200
|
## `saltcorn configuration-check`
|
|
199
201
|
|
|
@@ -210,7 +212,7 @@ DESCRIPTION
|
|
|
210
212
|
Check configuration
|
|
211
213
|
```
|
|
212
214
|
|
|
213
|
-
_See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
215
|
+
_See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/configuration-check.js)_
|
|
214
216
|
|
|
215
217
|
## `saltcorn configuration-check-backups FILES`
|
|
216
218
|
|
|
@@ -230,7 +232,7 @@ DESCRIPTION
|
|
|
230
232
|
Check configuration
|
|
231
233
|
```
|
|
232
234
|
|
|
233
|
-
_See code: [src/commands/configuration-check-backups.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
235
|
+
_See code: [src/commands/configuration-check-backups.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/configuration-check-backups.js)_
|
|
234
236
|
|
|
235
237
|
## `saltcorn create-tenant TENANT`
|
|
236
238
|
|
|
@@ -252,7 +254,7 @@ DESCRIPTION
|
|
|
252
254
|
Create a tenant
|
|
253
255
|
```
|
|
254
256
|
|
|
255
|
-
_See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
257
|
+
_See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/create-tenant.js)_
|
|
256
258
|
|
|
257
259
|
## `saltcorn create-user`
|
|
258
260
|
|
|
@@ -273,7 +275,7 @@ DESCRIPTION
|
|
|
273
275
|
Create a new user
|
|
274
276
|
```
|
|
275
277
|
|
|
276
|
-
_See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
278
|
+
_See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/create-user.js)_
|
|
277
279
|
|
|
278
280
|
## `saltcorn delete-tenants`
|
|
279
281
|
|
|
@@ -287,7 +289,7 @@ DESCRIPTION
|
|
|
287
289
|
Delete inactive tenants
|
|
288
290
|
```
|
|
289
291
|
|
|
290
|
-
_See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
292
|
+
_See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/delete-tenants.js)_
|
|
291
293
|
|
|
292
294
|
## `saltcorn delete-user USER_EMAIL`
|
|
293
295
|
|
|
@@ -310,7 +312,7 @@ DESCRIPTION
|
|
|
310
312
|
Command deletes the user specified by USER_EMAIL.
|
|
311
313
|
```
|
|
312
314
|
|
|
313
|
-
_See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
315
|
+
_See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/delete-user.js)_
|
|
314
316
|
|
|
315
317
|
## `saltcorn dev:localize-plugin PLUGIN [PATH]`
|
|
316
318
|
|
|
@@ -332,7 +334,7 @@ DESCRIPTION
|
|
|
332
334
|
Convert plugin to local plugin
|
|
333
335
|
```
|
|
334
336
|
|
|
335
|
-
_See code: [src/commands/dev/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
337
|
+
_See code: [src/commands/dev/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/dev/localize-plugin.js)_
|
|
336
338
|
|
|
337
339
|
## `saltcorn make-migration`
|
|
338
340
|
|
|
@@ -349,7 +351,7 @@ DESCRIPTION
|
|
|
349
351
|
unless you are a developer.
|
|
350
352
|
```
|
|
351
353
|
|
|
352
|
-
_See code: [src/commands/dev/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
354
|
+
_See code: [src/commands/dev/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/dev/make-migration.js)_
|
|
353
355
|
|
|
354
356
|
## `saltcorn saltcorn dev:plugin-test -d [PATH_TO_LOCAL_PLUGIN]/statistics -f test-backup.zip`
|
|
355
357
|
|
|
@@ -370,7 +372,7 @@ DESCRIPTION
|
|
|
370
372
|
Install a plugin, spawn 'npm run test' in the install directory and check the return code.
|
|
371
373
|
```
|
|
372
374
|
|
|
373
|
-
_See code: [src/commands/dev/plugin-test.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
375
|
+
_See code: [src/commands/dev/plugin-test.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/dev/plugin-test.js)_
|
|
374
376
|
|
|
375
377
|
## `saltcorn dev:post-release [TASK]`
|
|
376
378
|
|
|
@@ -387,7 +389,7 @@ DESCRIPTION
|
|
|
387
389
|
Post-release tasks: docker and vagrant builds
|
|
388
390
|
```
|
|
389
391
|
|
|
390
|
-
_See code: [src/commands/dev/post-release.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
392
|
+
_See code: [src/commands/dev/post-release.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/dev/post-release.js)_
|
|
391
393
|
|
|
392
394
|
## `saltcorn dev:release VERSION`
|
|
393
395
|
|
|
@@ -407,7 +409,7 @@ DESCRIPTION
|
|
|
407
409
|
Release a new saltcorn version
|
|
408
410
|
```
|
|
409
411
|
|
|
410
|
-
_See code: [src/commands/dev/release.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
412
|
+
_See code: [src/commands/dev/release.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/dev/release.js)_
|
|
411
413
|
|
|
412
414
|
## `saltcorn dev:release-resume VERSION`
|
|
413
415
|
|
|
@@ -427,7 +429,7 @@ DESCRIPTION
|
|
|
427
429
|
Release a new saltcorn version
|
|
428
430
|
```
|
|
429
431
|
|
|
430
|
-
_See code: [src/commands/dev/release-resume.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
432
|
+
_See code: [src/commands/dev/release-resume.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/dev/release-resume.js)_
|
|
431
433
|
|
|
432
434
|
## `saltcorn dev:test-plugin PATH`
|
|
433
435
|
|
|
@@ -446,7 +448,7 @@ DESCRIPTION
|
|
|
446
448
|
Extra documentation goes here
|
|
447
449
|
```
|
|
448
450
|
|
|
449
|
-
_See code: [src/commands/dev/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
451
|
+
_See code: [src/commands/dev/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/dev/test-plugin.js)_
|
|
450
452
|
|
|
451
453
|
## `saltcorn dev:translate LOCALE`
|
|
452
454
|
|
|
@@ -466,7 +468,7 @@ DESCRIPTION
|
|
|
466
468
|
Produce translation files with LLM
|
|
467
469
|
```
|
|
468
470
|
|
|
469
|
-
_See code: [src/commands/dev/translate.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
471
|
+
_See code: [src/commands/dev/translate.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/dev/translate.js)_
|
|
470
472
|
|
|
471
473
|
## `saltcorn fixtures`
|
|
472
474
|
|
|
@@ -486,7 +488,7 @@ DESCRIPTION
|
|
|
486
488
|
This manual step it is never required for users and rarely required for developers
|
|
487
489
|
```
|
|
488
490
|
|
|
489
|
-
_See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
491
|
+
_See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/fixtures.js)_
|
|
490
492
|
|
|
491
493
|
## `saltcorn get-cfg [KEY]`
|
|
492
494
|
|
|
@@ -507,7 +509,7 @@ DESCRIPTION
|
|
|
507
509
|
Get a configuration value. The value is printed to stdout as a JSON value
|
|
508
510
|
```
|
|
509
511
|
|
|
510
|
-
_See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
512
|
+
_See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/get-cfg.js)_
|
|
511
513
|
|
|
512
514
|
## `saltcorn info [KEY]`
|
|
513
515
|
|
|
@@ -533,7 +535,7 @@ ALIASES
|
|
|
533
535
|
$ saltcorn paths
|
|
534
536
|
```
|
|
535
537
|
|
|
536
|
-
_See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
538
|
+
_See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/info.js)_
|
|
537
539
|
|
|
538
540
|
## `saltcorn inspect TYPE [NAME]`
|
|
539
541
|
|
|
@@ -554,7 +556,7 @@ DESCRIPTION
|
|
|
554
556
|
Inspect an entity's JSON representation, or list entities
|
|
555
557
|
```
|
|
556
558
|
|
|
557
|
-
_See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
559
|
+
_See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/inspect.js)_
|
|
558
560
|
|
|
559
561
|
## `saltcorn install-pack`
|
|
560
562
|
|
|
@@ -573,7 +575,7 @@ DESCRIPTION
|
|
|
573
575
|
Install a pack or restore a snapshot
|
|
574
576
|
```
|
|
575
577
|
|
|
576
|
-
_See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
578
|
+
_See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/install-pack.js)_
|
|
577
579
|
|
|
578
580
|
## `saltcorn install-plugin`
|
|
579
581
|
|
|
@@ -593,7 +595,7 @@ DESCRIPTION
|
|
|
593
595
|
Install a plugin
|
|
594
596
|
```
|
|
595
597
|
|
|
596
|
-
_See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
598
|
+
_See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/install-plugin.js)_
|
|
597
599
|
|
|
598
600
|
## `saltcorn list-tenants`
|
|
599
601
|
|
|
@@ -612,7 +614,7 @@ DESCRIPTION
|
|
|
612
614
|
List tenants in CSV format
|
|
613
615
|
```
|
|
614
616
|
|
|
615
|
-
_See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
617
|
+
_See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/list-tenants.js)_
|
|
616
618
|
|
|
617
619
|
## `saltcorn list-triggers`
|
|
618
620
|
|
|
@@ -631,7 +633,7 @@ DESCRIPTION
|
|
|
631
633
|
List triggers
|
|
632
634
|
```
|
|
633
635
|
|
|
634
|
-
_See code: [src/commands/list-triggers.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
636
|
+
_See code: [src/commands/list-triggers.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/list-triggers.js)_
|
|
635
637
|
|
|
636
638
|
## `saltcorn list-users`
|
|
637
639
|
|
|
@@ -649,7 +651,7 @@ DESCRIPTION
|
|
|
649
651
|
List users
|
|
650
652
|
```
|
|
651
653
|
|
|
652
|
-
_See code: [src/commands/list-users.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
654
|
+
_See code: [src/commands/list-users.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/list-users.js)_
|
|
653
655
|
|
|
654
656
|
## `saltcorn saltcorn migrate`
|
|
655
657
|
|
|
@@ -672,7 +674,7 @@ DESCRIPTION
|
|
|
672
674
|
servers and need to control when the migrations are run.
|
|
673
675
|
```
|
|
674
676
|
|
|
675
|
-
_See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
677
|
+
_See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/migrate.js)_
|
|
676
678
|
|
|
677
679
|
## `saltcorn modify-user USER_EMAIL`
|
|
678
680
|
|
|
@@ -703,7 +705,7 @@ DESCRIPTION
|
|
|
703
705
|
NOTE that -a and -r role (--role=role) can give conflict.
|
|
704
706
|
```
|
|
705
707
|
|
|
706
|
-
_See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
708
|
+
_See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/modify-user.js)_
|
|
707
709
|
|
|
708
710
|
## `saltcorn paths [KEY]`
|
|
709
711
|
|
|
@@ -758,7 +760,7 @@ EXAMPLES
|
|
|
758
760
|
plugins -u -f - force plugin update
|
|
759
761
|
```
|
|
760
762
|
|
|
761
|
-
_See code: [src/commands/plugins.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
763
|
+
_See code: [src/commands/plugins.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/plugins.js)_
|
|
762
764
|
|
|
763
765
|
## `saltcorn prepare`
|
|
764
766
|
|
|
@@ -776,7 +778,7 @@ DESCRIPTION
|
|
|
776
778
|
Prepare to serve. Optional, may accelerate subsequent 'saltcorn serve' startup
|
|
777
779
|
```
|
|
778
780
|
|
|
779
|
-
_See code: [src/commands/prepare.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
781
|
+
_See code: [src/commands/prepare.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/prepare.js)_
|
|
780
782
|
|
|
781
783
|
## `saltcorn reset-schema`
|
|
782
784
|
|
|
@@ -796,7 +798,7 @@ DESCRIPTION
|
|
|
796
798
|
This will delete all existing information
|
|
797
799
|
```
|
|
798
800
|
|
|
799
|
-
_See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
801
|
+
_See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/reset-schema.js)_
|
|
800
802
|
|
|
801
803
|
## `saltcorn restore FILE`
|
|
802
804
|
|
|
@@ -816,7 +818,7 @@ DESCRIPTION
|
|
|
816
818
|
Restore a previously backed up database (zip or sqlc format)
|
|
817
819
|
```
|
|
818
820
|
|
|
819
|
-
_See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
821
|
+
_See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/restore.js)_
|
|
820
822
|
|
|
821
823
|
## `saltcorn rm-tenant`
|
|
822
824
|
|
|
@@ -836,7 +838,7 @@ DESCRIPTION
|
|
|
836
838
|
It recommended to make backup of tenant before perform this command.
|
|
837
839
|
```
|
|
838
840
|
|
|
839
|
-
_See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
841
|
+
_See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/rm-tenant.js)_
|
|
840
842
|
|
|
841
843
|
## `saltcorn run-benchmark [BASEURL]`
|
|
842
844
|
|
|
@@ -858,7 +860,7 @@ DESCRIPTION
|
|
|
858
860
|
Run benchmark
|
|
859
861
|
```
|
|
860
862
|
|
|
861
|
-
_See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
863
|
+
_See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/run-benchmark.js)_
|
|
862
864
|
|
|
863
865
|
## `saltcorn run-js`
|
|
864
866
|
|
|
@@ -877,7 +879,7 @@ DESCRIPTION
|
|
|
877
879
|
Run javascript code
|
|
878
880
|
```
|
|
879
881
|
|
|
880
|
-
_See code: [src/commands/run-js.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
882
|
+
_See code: [src/commands/run-js.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/run-js.js)_
|
|
881
883
|
|
|
882
884
|
## `saltcorn run-sql`
|
|
883
885
|
|
|
@@ -896,7 +898,7 @@ DESCRIPTION
|
|
|
896
898
|
Run sql expression
|
|
897
899
|
```
|
|
898
900
|
|
|
899
|
-
_See code: [src/commands/run-sql.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
901
|
+
_See code: [src/commands/run-sql.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/run-sql.js)_
|
|
900
902
|
|
|
901
903
|
## `saltcorn run-tests [PACKAGE]`
|
|
902
904
|
|
|
@@ -923,7 +925,7 @@ DESCRIPTION
|
|
|
923
925
|
Run test suites
|
|
924
926
|
```
|
|
925
927
|
|
|
926
|
-
_See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
928
|
+
_See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/run-tests.js)_
|
|
927
929
|
|
|
928
930
|
## `saltcorn run-trigger TRIGGER`
|
|
929
931
|
|
|
@@ -943,7 +945,7 @@ DESCRIPTION
|
|
|
943
945
|
Run a trigger
|
|
944
946
|
```
|
|
945
947
|
|
|
946
|
-
_See code: [src/commands/run-trigger.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
948
|
+
_See code: [src/commands/run-trigger.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/run-trigger.js)_
|
|
947
949
|
|
|
948
950
|
## `saltcorn scheduler`
|
|
949
951
|
|
|
@@ -960,7 +962,7 @@ DESCRIPTION
|
|
|
960
962
|
Run the Saltcorn scheduler
|
|
961
963
|
```
|
|
962
964
|
|
|
963
|
-
_See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
965
|
+
_See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/scheduler.js)_
|
|
964
966
|
|
|
965
967
|
## `saltcorn serve`
|
|
966
968
|
|
|
@@ -985,7 +987,7 @@ DESCRIPTION
|
|
|
985
987
|
Start the Saltcorn server
|
|
986
988
|
```
|
|
987
989
|
|
|
988
|
-
_See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
990
|
+
_See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/serve.js)_
|
|
989
991
|
|
|
990
992
|
## `saltcorn set-cfg [KEY] [VALUE]`
|
|
991
993
|
|
|
@@ -1010,7 +1012,7 @@ DESCRIPTION
|
|
|
1010
1012
|
stored as a string.
|
|
1011
1013
|
```
|
|
1012
1014
|
|
|
1013
|
-
_See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
1015
|
+
_See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/set-cfg.js)_
|
|
1014
1016
|
|
|
1015
1017
|
## `saltcorn set-daily-time [MINS]`
|
|
1016
1018
|
|
|
@@ -1030,7 +1032,7 @@ DESCRIPTION
|
|
|
1030
1032
|
Set the time the default daily event will run, offset in minutes from the current time. Restart required.
|
|
1031
1033
|
```
|
|
1032
1034
|
|
|
1033
|
-
_See code: [src/commands/set-daily-time.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
1035
|
+
_See code: [src/commands/set-daily-time.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/set-daily-time.js)_
|
|
1034
1036
|
|
|
1035
1037
|
## `saltcorn setup`
|
|
1036
1038
|
|
|
@@ -1050,7 +1052,7 @@ DESCRIPTION
|
|
|
1050
1052
|
configuration file
|
|
1051
1053
|
```
|
|
1052
1054
|
|
|
1053
|
-
_See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
1055
|
+
_See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/setup.js)_
|
|
1054
1056
|
|
|
1055
1057
|
## `saltcorn setup-benchmark`
|
|
1056
1058
|
|
|
@@ -1068,7 +1070,7 @@ DESCRIPTION
|
|
|
1068
1070
|
Setup an instance for benchmarking
|
|
1069
1071
|
```
|
|
1070
1072
|
|
|
1071
|
-
_See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
1073
|
+
_See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/setup-benchmark.js)_
|
|
1072
1074
|
|
|
1073
1075
|
## `saltcorn sync-upload-data`
|
|
1074
1076
|
|
|
@@ -1089,7 +1091,7 @@ DESCRIPTION
|
|
|
1089
1091
|
Runs a sync for data supplied by the mobile app
|
|
1090
1092
|
```
|
|
1091
1093
|
|
|
1092
|
-
_See code: [src/commands/sync-upload-data.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
1094
|
+
_See code: [src/commands/sync-upload-data.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/sync-upload-data.js)_
|
|
1093
1095
|
|
|
1094
1096
|
## `saltcorn take-snapshot`
|
|
1095
1097
|
|
|
@@ -1107,7 +1109,7 @@ DESCRIPTION
|
|
|
1107
1109
|
Print a current snapshout to stdout
|
|
1108
1110
|
```
|
|
1109
1111
|
|
|
1110
|
-
_See code: [src/commands/take-snapshot.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
1112
|
+
_See code: [src/commands/take-snapshot.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/take-snapshot.js)_
|
|
1111
1113
|
|
|
1112
1114
|
## `saltcorn transform-field EXPRESSION FIELD TABLE [TENANT]`
|
|
1113
1115
|
|
|
@@ -1127,5 +1129,5 @@ DESCRIPTION
|
|
|
1127
1129
|
transform an existing field by applying a calculated expression
|
|
1128
1130
|
```
|
|
1129
1131
|
|
|
1130
|
-
_See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v1.3.
|
|
1132
|
+
_See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v1.3.1-beta.1/packages/saltcorn-cli/src/commands/transform-field.js)_
|
|
1131
1133
|
<!-- commandsstop -->
|