Browse Source

Adding Windows PowerShell specfic docs

pull/2740/head
Nathan Powell 7 years ago
parent
commit
1c72863c00
  1. 11
      examples/tutorial/README.rst

11
examples/tutorial/README.rst

@ -31,6 +31,11 @@ Or on Windows cmd::
py -3 -m venv venv
venv\Scripts\activate.bat
Or on Windows PowerShell::
python -m venv venv
venv\Scripts\activate
Install Flaskr::
pip install -e .
@ -57,6 +62,12 @@ Or on Windows cmd::
set FLASK_ENV=development
flask run
Or on Windows PowerShell::
Set-Item Env:FLASK_APP "flaskr"
Set-Item Env:FLASK_ENV "development"
flask run
Open http://127.0.0.1:5000 in a browser.

Loading…
Cancel
Save