]> git.datanom.net - flask-test.git/blame - profile.py
final
[flask-test.git] / profile.py
CommitLineData
163c4d87
MR
1#!flask/bin/python
2from werkzeug.contrib.profiler import ProfilerMiddleware
3from app import app
4
5app.config['PROFILE'] = True
6app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[30])
7app.run(debug = True)
This page took 0.027649 seconds and 5 git commands to generate.