Sentry Answers>Flask>

Auto-reloading a Flask application

Auto-reloading a Flask application

James W.

The ProblemJump To Solution

You are working on a Flask project and notice that the process of manually reloading your Flask application every time you save new changes is tedious and inefficient.

Is there a way to automatically reload your Flask application whenever you save changes to your code?

The Solution

Use the --debug option when you run your Flask app to enable debug mode.

Click to Copy
flask --app example_app.py --debug run

This will enable auto-reload whenever changes are made to your code and saved. It will also enable an interactive debugger in the browser if any errors occur during a request.

For more information about running your Flask app, run the following command to get a list of options:

Click to Copy
flask run --help
  • SentryFlask Error Monitoring
  • Community SeriesIdentify, Trace, and Fix Endpoint Regression Issues
  • Syntax.fm logo
    Listen to the Syntax Podcast

    Tasty Treats for Web Developers brought to you by Sentry. Web development tips and tricks hosted by Wes Bos and Scott Tolinski

    Listen to Syntax

Loved by over 4 million developers and more than 90,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.