Created
July 26, 2012 07:54
-
-
Save DazWorrall/3180841 to your computer and use it in GitHub Desktop.
Flask maintenance mode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, redirect, url_for, request | |
app = Flask(__name__) | |
is_maintenance_mode = True | |
# Always throw a 503 during maintenance: http://is.gd/DksGDm | |
@app.before_request | |
def check_for_maintenance(): | |
if is_maintenance_mode and request.path != url_for('maintenance'): | |
return redirect(url_for('maintenance')) | |
# Or alternatively, dont redirect | |
# return 'Sorry, off for maintenance!', 503 | |
@app.route('/') | |
def index(): | |
return 'Hello!' | |
@app.route('/maintenance') | |
def maintenance(): | |
return 'Sorry, off for maintenance!', 503 | |
if __name__ == '__main__': | |
app.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also works