Skip to content

Commit

Permalink
apacheGH-621 browser: permit serving over https
Browse files Browse the repository at this point in the history
  • Loading branch information
mgatto committed Jul 14, 2023
1 parent 01554ca commit cf41db0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ cordova run [<platform> [...]]
[--list | --debug | --release]
[--noprepare]
[--nobuild]
[--device | --emulator | --target=<targetName>]
[--device | --emulator | --https | --target=<targetName>]
[--buildConfig=<configfile>]
[-- <platformOpts>]
```
Expand All @@ -462,6 +462,7 @@ cordova run [<platform> [...]]
| --nobuild | Skip building
| --device | Deploy to a device
| --emulator | Deploy to an emulator
| --https | Serve from Express over SSL. Store your SSL .key and .crt files to the project root. There are no default files for this.
| --target | Deploy to a specific target emulator/device. Use `--list` to display target options
| --buildConfig=`<configFile>` | Default: build.json in cordova root directory. <br/> Use the specified build configuration file. `build.json` file is used to specify paramaters to customize the app build process especially related to signing the package.
| `<platformOpts>` | To provide platform specific options, you must include them after `--` separator. Review platform guide docs for more details.
Expand Down
1 change: 1 addition & 0 deletions src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const knownOpts = {
archs: String,
device: Boolean,
emulator: Boolean,
https: Boolean,
target: String,
noprepare: Boolean,
nobuild: Boolean,
Expand Down

0 comments on commit cf41db0

Please sign in to comment.