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