2025-03-14 21:59:59 -06:00
|
|
|
# flask
|
|
|
|
|
|
|
|
|
|
> A general utility script for Flask applications. Loads the application defined in the `FLASK_APP` environment variable.
|
2025-05-08 12:26:01 -06:00
|
|
|
> More information: <https://flask.palletsprojects.com/en/stable/cli/>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Run a development server:
|
|
|
|
|
|
|
|
|
|
`flask run`
|
|
|
|
|
|
|
|
|
|
- Show the routes for the app:
|
|
|
|
|
|
|
|
|
|
`flask routes`
|
|
|
|
|
|
|
|
|
|
- Run a Python interactive shell in the app's context:
|
|
|
|
|
|
|
|
|
|
`flask shell`
|