|
@@ -1,15 +1,23 @@
|
|
#!/usr/bin/env python
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
+import logging
|
|
|
|
+from logging.config import dictConfig
|
|
from werkzeug.contrib.profiler import ProfilerMiddleware
|
|
from werkzeug.contrib.profiler import ProfilerMiddleware
|
|
|
|
|
|
-from lakesuperior.app import create_app
|
|
|
|
|
|
+# Environment must be set before importing the app factory function.
|
|
|
|
+import lakesuperior.env_setup
|
|
|
|
+
|
|
from lakesuperior.config_parser import config
|
|
from lakesuperior.config_parser import config
|
|
|
|
+from lakesuperior.globals import AppGlobals
|
|
|
|
+from lakesuperior.env import env
|
|
|
|
|
|
options = {
|
|
options = {
|
|
'restrictions': [30],
|
|
'restrictions': [30],
|
|
#'profile_dir': '/tmp/lsup_profiling'
|
|
#'profile_dir': '/tmp/lsup_profiling'
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+from lakesuperior.app import create_app
|
|
|
|
+
|
|
if __name__ == '__main__':
|
|
if __name__ == '__main__':
|
|
fcrepo = create_app(config['application'])
|
|
fcrepo = create_app(config['application'])
|
|
fcrepo.wsgi_app = ProfilerMiddleware(fcrepo.wsgi_app, **options)
|
|
fcrepo.wsgi_app = ProfilerMiddleware(fcrepo.wsgi_app, **options)
|