9 lines
218 B
Python
9 lines
218 B
Python
|
#!flask/bin/python
|
||
|
from werkzeug.contrib.profiler import ProfilerMiddleware
|
||
|
from app import app
|
||
|
|
||
|
app.config['PROFILE'] = True
|
||
|
app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions = [30])
|
||
|
app.run(debug = True)
|
||
|
|