profiler.py 436 B

123456789101112131415161718
  1. #!/usr/bin/env python
  2. from werkzeug.contrib.profiler import ProfilerMiddleware
  3. from lakesuperior.app import create_app
  4. from lakesuperior.config_parser import config
  5. fcrepo = create_app(config['application'], config['logging'])
  6. options = {
  7. 'restrictions': [30],
  8. 'profile_dir': '/tmp/lsup_profiling'
  9. }
  10. fcrepo.wsgi_app = ProfilerMiddleware(fcrepo.wsgi_app, **options)
  11. fcrepo.config['PROFILE'] = True
  12. fcrepo.run(debug = True)