2013-03-10 04:17:06 +00:00
|
|
|
#!flask/bin/python
|
|
|
|
from werkzeug.contrib.profiler import ProfilerMiddleware
|
|
|
|
from app import app
|
|
|
|
|
|
|
|
app.config['PROFILE'] = True
|
2014-09-19 14:47:13 +00:00
|
|
|
app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[30])
|
|
|
|
app.run(debug=True)
|