You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2020. It is now read-only.
defgen_admin(app, **kwargs):
frommyweb.adminimportMyAdminApp## easiest but possibly incomplete way to copy your settingsreturnMyAdminApp(config=app.config, **kwargs)
sub_manager=Manager(gen_admin)
manager=Manager(MyApp)
manager.add_command("admin", sub_manager)
Issues:
doc shows default commands being used, but the Manager isn't being passed with_default_commands=True, but it doesn't seem to matter as with_default_commands doesn't seem to work anyhow. However, If you call manager.add_default_commands() manually the commands are added to the sub-manager.
Submanagers that are Flask app instances don't end up using the app instance that is provided to the Manager, but the root managers app instance.
Steps to repeat
This is a really basic example, there are a number of ways to set this up, but they all end up with runserver or showUrls returning routes for the app attached to the root manager.
Provided example
Issues:
Steps to repeat
This is a really basic example, there are a number of ways to set this up, but they all end up with runserver or showUrls returning routes for the app attached to the root manager.
The text was updated successfully, but these errors were encountered: