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

run.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)