diff --git a/README.md b/README.md index be8593d..c8f85c9 100644 --- a/README.md +++ b/README.md @@ -2547,7 +2547,7 @@ import flask ```python app = flask.Flask(__name__) # Returns app object. Put at the top. -app.run(host=None, port=None, debug=None) # Or: `$ flask --app run` +app.run(host=None, port=None, debug=None) # Or: $ flask --app FILE run [--ARG[=VAL]] ``` * **Starts the app at `'http://localhost:5000'`. Use `'host="0.0.0.0"'` to run externally.** * **Install a WSGI server like [Waitress](https://flask.palletsprojects.com/en/latest/deploying/waitress/) and a HTTP server such as [Nginx](https://flask.palletsprojects.com/en/latest/deploying/nginx/) for better security.** diff --git a/index.html b/index.html index 02962d6..c4582f7 100644 --- a/index.html +++ b/index.html @@ -54,7 +54,7 @@
- +
@@ -2088,7 +2088,7 @@ print(f'{python_url},
app = flask.Flask(__name__)                # Returns app object. Put at the top.
-app.run(host=None, port=None, debug=None)  # Or: `$ flask --app <module> run`
+app.run(host=None, port=None, debug=None)  # Or: $ flask --app FILE run [--ARG[=VAL]]