Skip to content
Snippets Groups Projects
Select Git revision
  • aceba9c3507bda0df754d36d657cb790d343cdf3
  • main default
  • full_migration
  • v1.0.9 protected
  • v1.0.8 protected
  • v1.0.7 protected
  • v1.0.6 protected
  • v1.0.5 protected
  • v1.0.4 protected
  • v1.0.3 protected
  • v1.0.2 protected
  • v1.0.1 protected
  • v1.0 protected
13 results

server.py

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)