Skip to content
Snippets Groups Projects
Select Git revision
  • 873e0f0074d3381af75b3ecc620360f1d8b3fe86
  • master default protected
2 results

server.py

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