1234567891011121314151617181920212223242526 |
- import logging
- from logging.config import dictConfig
- from werkzeug.contrib.profiler import ProfilerMiddleware
- import lakesuperior.env_setup
- from lakesuperior.config_parser import config
- from lakesuperior.globals import AppGlobals
- from lakesuperior.env import env
- options = {
- 'restrictions': [30],
-
- }
- from lakesuperior.app import create_app
- if __name__ == '__main__':
- fcrepo = create_app(config['application'])
- fcrepo.wsgi_app = ProfilerMiddleware(fcrepo.wsgi_app, **options)
- fcrepo.config['PROFILE'] = True
- fcrepo.run(debug = True)
|