Note: the server will not check submissions for duplicates! (nor does it do any kind of rate-limiting)
#!/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)