Skip to content
Snippets Groups Projects
Select Git revision
  • 205dbe97b320c2b440e48e932851348892943f3f
  • master default protected
  • ldap_user_conn_test
3 results

profiling.py

Blame
  • Forked from uffd / uffd
    Source project has a limited visibility.
    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)