@@ -37,14 +37,20 @@ If you navigate to `http://localhost:5000`, you will see the response created by
You will also notice the lines `Environment: production` and `Debug mode: off` when the Flask application starts in the console. To enable debug mode, you must set the environment variable `ENV` to `dev`, ie: `export ENV=dev` (see `config/config.py` for more details on different environments).
## Tutorial 1: Adding a new route
# Flask Routes
A "route manager" in Flask is called a "Blueprint", all blueprints need to be "registered" in `app.py`, otherwise they will not be accessible. A "router manager" has the role of handling requests from all routes that start with the provided "url_prefix".