From e0f177ca45592583c262a1546cb41103e128dd57 Mon Sep 17 00:00:00 2001 From: Randall Leeds Date: Tue, 22 Jan 2019 00:59:41 -0800 Subject: [PATCH] Fix code block formatting in docs --- docs/source/custom.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/custom.rst b/docs/source/custom.rst index 36b2c9fd..0b8c366c 100644 --- a/docs/source/custom.rst +++ b/docs/source/custom.rst @@ -34,6 +34,7 @@ This command will work with any Gunicorn CLI parameters or a config file - just pass them along as if you're directly giving them to Gunicorn: .. code-block:: bash + # Custom parameters $ python gunicorn.app.wsgiapp exampleapi:app --bind=0.0.0.0:8081 --workers=4 # Using a config file @@ -44,6 +45,7 @@ time, and your compiled app should work with the entry point passed to it at run time. .. code-block:: bash + # Generic pex build command via bash from root of exampleapi project $ pex . -v -c gunicorn -o compiledapp.pex # Running it