1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -47,15 +47,16 @@ cd getting-started-with-apollo-python
47
47
48
48
Fire up the engines
49
49
```
50
- FLASK_APP=getting_started_with_apollo.py flask run
50
+ FLASK_ENV=development FLASK_APP=getting_started_with_apollo.py flask run
51
51
```
52
52
53
- You should be met with the following output
53
+ You should be met with the following output, note that it's running on ` localhost ` and port ` 5000 `
54
54
```
55
- * Serving Flask app "getting_started_with_apollo.py"
56
- * Environment: production
57
- WARNING: This is a development server. Do not use it in a production deployment.
58
- Use a production WSGI server instead.
59
- * Debug mode: off
55
+ * Serving Flask app "getting_started_with_apollo.py" (lazy loading)
56
+ * Environment: development
57
+ * Debug mode: on
60
58
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
59
+ * Restarting with stat
60
+ * Debugger is active!
61
+ * Debugger PIN: 204-527-831
61
62
```
0 commit comments