Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 185c811

Browse files
committedMar 1, 2019
Update default port to 8443
1 parent 06855ad commit 185c811

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎packages/app/common/src/containers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class Main extends React.Component<void, {
8383
{
8484
host: "self",
8585
hostname: "http://localhost:8080",
86-
name: "Kyle's Magic Server",
86+
name: "Dev Server",
8787
},
8888
]}
8989
user={{

‎packages/server/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class Entry extends Command {
2222
help: flags.help(),
2323
host: flags.string({ char: "h", default: "0.0.0.0" }),
2424
open: flags.boolean({ char: "o", description: "Open in browser on startup" }),
25-
port: flags.integer({ char: "p", default: 8080, description: "Port to bind on" }),
25+
port: flags.integer({ char: "p", default: 8443, description: "Port to bind on" }),
2626
version: flags.version({ char: "v" }),
2727
"no-auth": flags.boolean({ default: false }),
2828

0 commit comments

Comments
 (0)
Please sign in to comment.