diff --git a/profiling.py b/profiling.py new file mode 100755 index 0000000000000000000000000000000000000000..9b6e1eed7aa3c3cad8af39bae8a60544fa1c9edf --- /dev/null +++ b/profiling.py @@ -0,0 +1,6 @@ +#!/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) +