Style the flask command consistently (#2120)

It's done like this in other parts of this doc.
This commit is contained in:
Sven-Hendrik Haase 2016-12-21 21:06:48 +01:00 committed by Markus Unterwaditzer
parent ccb562854e
commit 0ba1a872b7
1 changed files with 2 additions and 2 deletions

View File

@ -139,8 +139,8 @@ This could be a file named :file:`autoapp.py` with these contents::
from yourapplication import create_app
app = create_app(os.environ['YOURAPPLICATION_CONFIG'])
Once this has happened you can make the flask command automatically pick
it up::
Once this has happened you can make the :command:`flask` command automatically
pick it up::
export YOURAPPLICATION_CONFIG=/path/to/config.cfg
export FLASK_APP=/path/to/autoapp.py