Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 446 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 446 Bytes

This is my flask project playground.

How to install?

To install the flaskr app, run pip install -e . in the current directory.

How to run?

On Powershell:

> $env:FLASK_APP="flaskr"
> $env:FLASK_ENV="development"
> flask run

On Windows cmd:

> set FLASK_APP=flaskr
> set FLASK_ENV=development
> flask run

On Linux and Mac:

$ export FLASK_APP=flaskr
$ export FLASK_ENV=development
$ flask run