@saltcorn/cli 0.9.5-beta.9 → 0.9.6-beta.0

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 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.9.5-beta.9 linux-x64 node-v18.7.0
23
+ @saltcorn/cli/0.9.6-beta.0 linux-x64 node-v18.7.0
24
24
  $ saltcorn --help [COMMAND]
25
25
  USAGE
26
26
  $ saltcorn COMMAND
@@ -89,7 +89,7 @@ OPTIONS
89
89
  -f, --force force command execution
90
90
  ```
91
91
 
92
- _See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/add-schema.js)_
92
+ _See code: [src/commands/add-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/add-schema.js)_
93
93
 
94
94
  ## `saltcorn backup`
95
95
 
@@ -106,7 +106,7 @@ OPTIONS
106
106
  -z, --zip Backup public in saltcorn zip format
107
107
  ```
108
108
 
109
- _See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/backup.js)_
109
+ _See code: [src/commands/backup.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/backup.js)_
110
110
 
111
111
  ## `saltcorn build-app`
112
112
 
@@ -117,44 +117,63 @@ USAGE
117
117
  $ saltcorn build-app
118
118
 
119
119
  OPTIONS
120
- -b, --buildDirectory=buildDirectory A directory where the app should be build
121
- -c, --copyAppDirectory=copyAppDirectory If set, the app file will be copied here, please set 'user email', too
122
- -d, --useDocker Use a docker container to build the app.
123
- -e, --entryPoint=entryPoint This is the first view or page (see -t) after the login.
124
- -l, --localUserTables=localUserTables user defined tables that should be replicated into the app
125
- -p, --platforms=platforms Platforms to build for, space separated list
126
- -s, --serverURL=serverURL URL to a saltcorn server
127
- -t, --entryPointType=entryPointType Type of the entry point ('view' or 'page'). The default is 'view'.
128
- -u, --userEmail=userEmail Email of the user building the app
120
+ -b, --buildDirectory=buildDirectory A directory where the app should be build
129
121
 
130
- --allowOfflineMode Switch to offline mode when there is no internet, sync the data when a
131
- connection is available again.
122
+ -c, --copyAppDirectory=copyAppDirectory If set, the app file will be copied here, please set 'user email',
123
+ too
132
124
 
133
- --appIcon=appIcon A png that will be used as launcher icon. The default is a png of a saltcorn
134
- symbol.
125
+ -d, --useDocker Use a docker container to build the app.
135
126
 
136
- --appName=appName Name of the mobile app (default SaltcornMobileApp)
127
+ -e, --entryPoint=entryPoint This is the first view or page (see -t) after the login.
137
128
 
138
- --appVersion=appVersion Version of the mobile app (default 1.0.0)
129
+ -l, --localUserTables=localUserTables user defined tables that should be replicated into the app
139
130
 
140
- --autoPublicLogin Show public entry points before the login as a public user.
131
+ -p, --platforms=platforms Platforms to build for, space separated list
141
132
 
142
- --buildForEmulator build without '--device', generates no .ipa file so that iOS apps can be
143
- build without developer accounts
133
+ -s, --serverURL=serverURL URL to a saltcorn server
144
134
 
145
- --includedPlugins=includedPlugins Names of plugins that should be bundled into the app.If empty, no modules are
146
- used.
135
+ -t, --entryPointType=entryPointType Type of the entry point ('view' or 'page'). The default is 'view'.
147
136
 
148
- --splashPage=splashPage Name of a page that should be shown while the app is loading.
137
+ -u, --userEmail=userEmail Email of the user building the app
149
138
 
150
- --synchedTables=synchedTables Table names for which the offline should be synchronized with the saltcorn
151
- server
139
+ --allowOfflineMode Switch to offline mode when there is no internet, sync the data
140
+ when a connection is available again.
152
141
 
153
- --tenantAppName=tenantAppName Optional name of a tenant application, if set, the app will be build for this
154
- tenant
142
+ --androidKeyStoreAlias=androidKeyStoreAlias A unique name to identify the key within the keystore file.
143
+
144
+ --androidKeystore=androidKeystore A self-signed certificate that includes the private key used to
145
+ sign your app.
146
+
147
+ --androidKeystorePassword=androidKeystorePassword he password to access the keystore file.
148
+
149
+ --appIcon=appIcon A png that will be used as launcher icon. The default is a png of a
150
+ saltcorn symbol.
151
+
152
+ --appId=appId Id of the mobile app (default com.saltcorn.mobileapp)
153
+
154
+ --appName=appName Name of the mobile app (default SaltcornMobileApp)
155
+
156
+ --appVersion=appVersion Version of the mobile app (default 1.0.0)
157
+
158
+ --autoPublicLogin Show public entry points before the login as a public user.
159
+
160
+ --buildType=buildType debug or release build
161
+
162
+ --includedPlugins=includedPlugins Names of plugins that should be bundled into the app.If empty, no
163
+ modules are used.
164
+
165
+ --provisioningProfile=provisioningProfile This profile will be used to sign your app
166
+
167
+ --splashPage=splashPage Name of a page that should be shown while the app is loading.
168
+
169
+ --synchedTables=synchedTables Table names for which the offline should be synchronized with the
170
+ saltcorn server
171
+
172
+ --tenantAppName=tenantAppName Optional name of a tenant application, if set, the app will be
173
+ build for this tenant
155
174
  ```
156
175
 
157
- _See code: [src/commands/build-app.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/build-app.js)_
176
+ _See code: [src/commands/build-app.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/build-app.js)_
158
177
 
159
178
  ## `saltcorn build-cordova-builder`
160
179
 
@@ -168,7 +187,7 @@ OPTIONS
168
187
  --buildClean run a clean build with --no-cache
169
188
  ```
170
189
 
171
- _See code: [src/commands/build-cordova-builder.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/build-cordova-builder.js)_
190
+ _See code: [src/commands/build-cordova-builder.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/build-cordova-builder.js)_
172
191
 
173
192
  ## `saltcorn configuration-check`
174
193
 
@@ -182,7 +201,7 @@ OPTIONS
182
201
  -t, --tenant=tenant tenant
183
202
  ```
184
203
 
185
- _See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/configuration-check.js)_
204
+ _See code: [src/commands/configuration-check.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/configuration-check.js)_
186
205
 
187
206
  ## `saltcorn configuration-check-backups FILES`
188
207
 
@@ -199,7 +218,7 @@ OPTIONS
199
218
  -d, --destructive destructive
200
219
  ```
201
220
 
202
- _See code: [src/commands/configuration-check-backups.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/configuration-check-backups.js)_
221
+ _See code: [src/commands/configuration-check-backups.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/configuration-check-backups.js)_
203
222
 
204
223
  ## `saltcorn create-tenant TENANT`
205
224
 
@@ -218,7 +237,7 @@ OPTIONS
218
237
  --url=url Url of tenant
219
238
  ```
220
239
 
221
- _See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/create-tenant.js)_
240
+ _See code: [src/commands/create-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/create-tenant.js)_
222
241
 
223
242
  ## `saltcorn create-user`
224
243
 
@@ -236,7 +255,7 @@ OPTIONS
236
255
  -t, --tenant=tenant tenant
237
256
  ```
238
257
 
239
- _See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/create-user.js)_
258
+ _See code: [src/commands/create-user.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/create-user.js)_
240
259
 
241
260
  ## `saltcorn delete-tenants`
242
261
 
@@ -247,7 +266,7 @@ USAGE
247
266
  $ saltcorn delete-tenants
248
267
  ```
249
268
 
250
- _See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/delete-tenants.js)_
269
+ _See code: [src/commands/delete-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/delete-tenants.js)_
251
270
 
252
271
  ## `saltcorn delete-user USER_EMAIL`
253
272
 
@@ -268,7 +287,7 @@ DESCRIPTION
268
287
  Command deletes the user specified by USER_EMAIL.
269
288
  ```
270
289
 
271
- _See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/delete-user.js)_
290
+ _See code: [src/commands/delete-user.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/delete-user.js)_
272
291
 
273
292
  ## `saltcorn dev:localize-plugin PLUGIN [PATH]`
274
293
 
@@ -287,7 +306,7 @@ OPTIONS
287
306
  -u, --unlocalize Unlocalize plugin (local to npm)
288
307
  ```
289
308
 
290
- _See code: [src/commands/dev/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/dev/localize-plugin.js)_
309
+ _See code: [src/commands/dev/localize-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/dev/localize-plugin.js)_
291
310
 
292
311
  ## `saltcorn make-migration`
293
312
 
@@ -303,7 +322,7 @@ DESCRIPTION
303
322
  unless you are a developer.
304
323
  ```
305
324
 
306
- _See code: [src/commands/dev/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/dev/make-migration.js)_
325
+ _See code: [src/commands/dev/make-migration.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/dev/make-migration.js)_
307
326
 
308
327
  ## `saltcorn saltcorn dev:plugin-test -d [PATH_TO_LOCAL_PLUGIN]/statistics -f test-backup.zip`
309
328
 
@@ -324,7 +343,7 @@ OPTIONS
324
343
  --database=database Run on specified database. Default is 'saltcorn_test''
325
344
  ```
326
345
 
327
- _See code: [src/commands/dev/plugin-test.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/dev/plugin-test.js)_
346
+ _See code: [src/commands/dev/plugin-test.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/dev/plugin-test.js)_
328
347
 
329
348
  ## `saltcorn dev:post-release [TASK]`
330
349
 
@@ -338,7 +357,7 @@ ARGUMENTS
338
357
  TASK (docker|vagrant|all|none) What to do
339
358
  ```
340
359
 
341
- _See code: [src/commands/dev/post-release.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/dev/post-release.js)_
360
+ _See code: [src/commands/dev/post-release.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/dev/post-release.js)_
342
361
 
343
362
  ## `saltcorn dev:release VERSION`
344
363
 
@@ -355,7 +374,7 @@ OPTIONS
355
374
  -t, --tag=tag NPM tag
356
375
  ```
357
376
 
358
- _See code: [src/commands/dev/release.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/dev/release.js)_
377
+ _See code: [src/commands/dev/release.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/dev/release.js)_
359
378
 
360
379
  ## `saltcorn dev:test-plugin PATH`
361
380
 
@@ -373,7 +392,7 @@ DESCRIPTION
373
392
  Extra documentation goes here
374
393
  ```
375
394
 
376
- _See code: [src/commands/dev/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/dev/test-plugin.js)_
395
+ _See code: [src/commands/dev/test-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/dev/test-plugin.js)_
377
396
 
378
397
  ## `saltcorn fixtures`
379
398
 
@@ -392,7 +411,7 @@ DESCRIPTION
392
411
  This manual step it is never required for users and rarely required for developers
393
412
  ```
394
413
 
395
- _See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/fixtures.js)_
414
+ _See code: [src/commands/fixtures.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/fixtures.js)_
396
415
 
397
416
  ## `saltcorn get-cfg [KEY]`
398
417
 
@@ -410,7 +429,7 @@ OPTIONS
410
429
  -t, --tenant=tenant tenant
411
430
  ```
412
431
 
413
- _See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/get-cfg.js)_
432
+ _See code: [src/commands/get-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/get-cfg.js)_
414
433
 
415
434
  ## `saltcorn help [COMMAND]`
416
435
 
@@ -448,7 +467,7 @@ ALIASES
448
467
  $ saltcorn paths
449
468
  ```
450
469
 
451
- _See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/info.js)_
470
+ _See code: [src/commands/info.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/info.js)_
452
471
 
453
472
  ## `saltcorn inspect TYPE [NAME]`
454
473
 
@@ -466,7 +485,7 @@ OPTIONS
466
485
  -t, --tenant=tenant tenant
467
486
  ```
468
487
 
469
- _See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/inspect.js)_
488
+ _See code: [src/commands/inspect.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/inspect.js)_
470
489
 
471
490
  ## `saltcorn install-pack`
472
491
 
@@ -482,7 +501,7 @@ OPTIONS
482
501
  -t, --tenant=tenant tenant
483
502
  ```
484
503
 
485
- _See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/install-pack.js)_
504
+ _See code: [src/commands/install-pack.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/install-pack.js)_
486
505
 
487
506
  ## `saltcorn install-plugin`
488
507
 
@@ -498,7 +517,7 @@ OPTIONS
498
517
  -t, --tenant=tenant tenant
499
518
  ```
500
519
 
501
- _See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/install-plugin.js)_
520
+ _See code: [src/commands/install-plugin.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/install-plugin.js)_
502
521
 
503
522
  ## `saltcorn list-tenants`
504
523
 
@@ -514,7 +533,7 @@ OPTIONS
514
533
  -v, --verbose verbose output
515
534
  ```
516
535
 
517
- _See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/list-tenants.js)_
536
+ _See code: [src/commands/list-tenants.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/list-tenants.js)_
518
537
 
519
538
  ## `saltcorn list-triggers`
520
539
 
@@ -530,7 +549,7 @@ OPTIONS
530
549
  -v, --verbose verbose output
531
550
  ```
532
551
 
533
- _See code: [src/commands/list-triggers.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/list-triggers.js)_
552
+ _See code: [src/commands/list-triggers.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/list-triggers.js)_
534
553
 
535
554
  ## `saltcorn list-users`
536
555
 
@@ -545,7 +564,7 @@ OPTIONS
545
564
  -v, --verbose verbose output
546
565
  ```
547
566
 
548
- _See code: [src/commands/list-users.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/list-users.js)_
567
+ _See code: [src/commands/list-users.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/list-users.js)_
549
568
 
550
569
  ## `saltcorn saltcorn migrate`
551
570
 
@@ -567,7 +586,7 @@ DESCRIPTION
567
586
  servers and need to control when the migrations are run.
568
587
  ```
569
588
 
570
- _See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/migrate.js)_
589
+ _See code: [src/commands/migrate.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/migrate.js)_
571
590
 
572
591
  ## `saltcorn modify-user USER_EMAIL`
573
592
 
@@ -596,7 +615,7 @@ DESCRIPTION
596
615
  NOTE that -a and -r role (--role=role) can give conflict.
597
616
  ```
598
617
 
599
- _See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/modify-user.js)_
618
+ _See code: [src/commands/modify-user.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/modify-user.js)_
600
619
 
601
620
  ## `saltcorn plugins`
602
621
 
@@ -623,7 +642,7 @@ EXAMPLES
623
642
  plugins -u -f - force plugin update
624
643
  ```
625
644
 
626
- _See code: [src/commands/plugins.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/plugins.js)_
645
+ _See code: [src/commands/plugins.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/plugins.js)_
627
646
 
628
647
  ## `saltcorn reset-schema`
629
648
 
@@ -642,7 +661,7 @@ DESCRIPTION
642
661
  This will delete all existing information
643
662
  ```
644
663
 
645
- _See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/reset-schema.js)_
664
+ _See code: [src/commands/reset-schema.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/reset-schema.js)_
646
665
 
647
666
  ## `saltcorn restore FILE`
648
667
 
@@ -659,7 +678,7 @@ OPTIONS
659
678
  -t, --tenant=tenant tenant
660
679
  ```
661
680
 
662
- _See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/restore.js)_
681
+ _See code: [src/commands/restore.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/restore.js)_
663
682
 
664
683
  ## `saltcorn rm-tenant`
665
684
 
@@ -678,7 +697,7 @@ DESCRIPTION
678
697
  It recommended to make backup of tenant before perform this command.
679
698
  ```
680
699
 
681
- _See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/rm-tenant.js)_
700
+ _See code: [src/commands/rm-tenant.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/rm-tenant.js)_
682
701
 
683
702
  ## `saltcorn run-benchmark [BASEURL]`
684
703
 
@@ -697,7 +716,7 @@ OPTIONS
697
716
  -t, --token=token API Token for reporting results
698
717
  ```
699
718
 
700
- _See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/run-benchmark.js)_
719
+ _See code: [src/commands/run-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/run-benchmark.js)_
701
720
 
702
721
  ## `saltcorn run-js`
703
722
 
@@ -713,7 +732,7 @@ OPTIONS
713
732
  -t, --tenant=tenant tenant name
714
733
  ```
715
734
 
716
- _See code: [src/commands/run-js.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/run-js.js)_
735
+ _See code: [src/commands/run-js.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/run-js.js)_
717
736
 
718
737
  ## `saltcorn run-sql`
719
738
 
@@ -729,7 +748,7 @@ OPTIONS
729
748
  -t, --tenant=tenant tenant name
730
749
  ```
731
750
 
732
- _See code: [src/commands/run-sql.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/run-sql.js)_
751
+ _See code: [src/commands/run-sql.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/run-sql.js)_
733
752
 
734
753
  ## `saltcorn run-tests [PACKAGE]`
735
754
 
@@ -753,7 +772,7 @@ OPTIONS
753
772
  --watchAll Watch files for changes and rerun all tests.
754
773
  ```
755
774
 
756
- _See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/run-tests.js)_
775
+ _See code: [src/commands/run-tests.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/run-tests.js)_
757
776
 
758
777
  ## `saltcorn run-trigger TRIGGER`
759
778
 
@@ -770,7 +789,7 @@ OPTIONS
770
789
  -t, --tenant=tenant tenant
771
790
  ```
772
791
 
773
- _See code: [src/commands/run-trigger.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/run-trigger.js)_
792
+ _See code: [src/commands/run-trigger.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/run-trigger.js)_
774
793
 
775
794
  ## `saltcorn scheduler`
776
795
 
@@ -784,7 +803,7 @@ OPTIONS
784
803
  -v, --verbose Verbose
785
804
  ```
786
805
 
787
- _See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/scheduler.js)_
806
+ _See code: [src/commands/scheduler.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/scheduler.js)_
788
807
 
789
808
  ## `saltcorn serve`
790
809
 
@@ -805,7 +824,7 @@ OPTIONS
805
824
  --subdomain_offset=subdomain_offset Number of parts to remove to access subdomain in 'multi_tenant' mode
806
825
  ```
807
826
 
808
- _See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/serve.js)_
827
+ _See code: [src/commands/serve.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/serve.js)_
809
828
 
810
829
  ## `saltcorn set-cfg [KEY] [VALUE]`
811
830
 
@@ -826,7 +845,7 @@ OPTIONS
826
845
  -t, --tenant=tenant tenant
827
846
  ```
828
847
 
829
- _See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/set-cfg.js)_
848
+ _See code: [src/commands/set-cfg.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/set-cfg.js)_
830
849
 
831
850
  ## `saltcorn setup`
832
851
 
@@ -845,7 +864,7 @@ DESCRIPTION
845
864
  configuration file
846
865
  ```
847
866
 
848
- _See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/setup.js)_
867
+ _See code: [src/commands/setup.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/setup.js)_
849
868
 
850
869
  ## `saltcorn setup-benchmark`
851
870
 
@@ -859,7 +878,7 @@ OPTIONS
859
878
  -t, --tenant=tenant tenant
860
879
  ```
861
880
 
862
- _See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/setup-benchmark.js)_
881
+ _See code: [src/commands/setup-benchmark.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/setup-benchmark.js)_
863
882
 
864
883
  ## `saltcorn sync-upload-data`
865
884
 
@@ -876,7 +895,7 @@ OPTIONS
876
895
  --userEmail=userEmail email of the user running the sync
877
896
  ```
878
897
 
879
- _See code: [src/commands/sync-upload-data.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/sync-upload-data.js)_
898
+ _See code: [src/commands/sync-upload-data.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/sync-upload-data.js)_
880
899
 
881
900
  ## `saltcorn take-snapshot`
882
901
 
@@ -891,7 +910,7 @@ OPTIONS
891
910
  -t, --tenant=tenant tenant
892
911
  ```
893
912
 
894
- _See code: [src/commands/take-snapshot.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/take-snapshot.js)_
913
+ _See code: [src/commands/take-snapshot.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/take-snapshot.js)_
895
914
 
896
915
  ## `saltcorn transform-field EXPRESSION FIELD TABLE [TENANT]`
897
916
 
@@ -908,5 +927,5 @@ ARGUMENTS
908
927
  TENANT tenant name
909
928
  ```
910
929
 
911
- _See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v0.9.5-beta.9/src/commands/transform-field.js)_
930
+ _See code: [src/commands/transform-field.js](https://github.com/saltcorn/saltcorn/blob/v0.9.6-beta.0/src/commands/transform-field.js)_
912
931
  <!-- commandsstop -->