Skip to content
Snippets Groups Projects
Forked from uffd / uffd
343 commits behind the upstream repository.
profiling.py 210 B
#!/usr/bin/python3
from werkzeug.contrib.profiler import ProfilerMiddleware
from uffd import create_app
app = create_app()
app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[30])
app.run(debug=True)