def create_app(with_static=True): app = Dorky() if with_static: app.wsgi_app = SharedDataMiddleware(app.wsgi_app, { '/static': os.path.join(os.path.dirname(__file__), 'mgmt_ui', 'static') }) return app