profiler.py 460 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. options = {
  6. 'restrictions': [30],
  7. #'profile_dir': '/tmp/lsup_profiling'
  8. }
  9. if __name__ == '__main__':
  10. fcrepo = create_app(config['application'])
  11. fcrepo.wsgi_app = ProfilerMiddleware(fcrepo.wsgi_app, **options)
  12. fcrepo.config['PROFILE'] = True
  13. fcrepo.run(debug = True)