From 579d0d9ffc0a8ab4a393c6aa4ae07cf5c018e893 Mon Sep 17 00:00:00 2001 From: Ben Keith <1754187+benlk@users.noreply.github.com> Date: Fri, 14 May 2021 16:31:07 -0400 Subject: [PATCH] Specify default port and host for serve commands (#8624) Merge pull request 8624 --- docs/_data/config_options/serve.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_data/config_options/serve.yml b/docs/_data/config_options/serve.yml index 13fc70b2..8578abe0 100644 --- a/docs/_data/config_options/serve.yml +++ b/docs/_data/config_options/serve.yml @@ -1,11 +1,11 @@ - name: Local Server Port - description: Listen on the given port. + description: Listen on the given port. The default is `4000`. option: "port: PORT" flag: "-P, --port PORT" - name: Local Server Hostname - description: Listen at the given hostname. + description: Listen at the given hostname. The default is `localhost`. option: "host: HOSTNAME" flag: "-H, --host HOSTNAME"