Skip to content
Snippets Groups Projects
Select Git revision
  • c4db676f5c289a4034507864b34a9f63051e876d
  • master default protected
  • md-export
  • th/mail
  • 179-einladungen-zum-aushaengen-drucken
5 results

documentation-syntax-tags.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    profiling.py 189 B
    #!/usr/bin/python3
    from werkzeug.contrib.profiler import ProfilerMiddleware
    from server import app
    app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[30])
    app.run(debug = True)