Archived
1
0

Update default port to 8443

This commit is contained in:
Kyle Carberry 2019-03-01 16:55:31 -06:00
parent 06855adaa5
commit 185c811354
No known key found for this signature in database
GPG Key ID: A0409BDB6B0B3EDB
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ export class Main extends React.Component<void, {
{
host: "self",
hostname: "http://localhost:8080",
name: "Kyle's Magic Server",
name: "Dev Server",
},
]}
user={{

View File

@ -22,7 +22,7 @@ export class Entry extends Command {
help: flags.help(),
host: flags.string({ char: "h", default: "0.0.0.0" }),
open: flags.boolean({ char: "o", description: "Open in browser on startup" }),
port: flags.integer({ char: "p", default: 8080, description: "Port to bind on" }),
port: flags.integer({ char: "p", default: 8443, description: "Port to bind on" }),
version: flags.version({ char: "v" }),
"no-auth": flags.boolean({ default: false }),