From 237a2ed42694e28208317daa7a62a70edb181519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dra=C5=BEen=20Lu=C4=8Danin?= Date: Thu, 25 Oct 2018 16:43:19 +0200 Subject: [PATCH] document how to customise the address --- docs/source/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst index fc12ab7..83768a7 100644 --- a/docs/source/quickstart.rst +++ b/docs/source/quickstart.rst @@ -34,7 +34,7 @@ Next, we can run our web service easily, with ``api.run()``:: This will spin up a production web server on port ``5042``, ready for incoming HTTP requests. -Note: you can pass ``port=5000`` if you want to customize the port. The ``PORT`` environment variable for established web service providers (e.g. Heroku) will automatically be honored. +Note: you can pass ``port=5000`` if you want to customize the port. The ``PORT`` environment variable for established web service providers (e.g. Heroku) will automatically be honored and will set the listening address to ``0.0.0.0`` automatically (also configurable through the ``address`` keyword argument). Accept Route Arguments