Noticed that the dash method does not accept a keyword arg for the app root path, and instead calls the built in app_root_path() to determine that here:
|
result = DashApp(app_root_path(), isinteractive(), config, index_string) |
I am facing an issue where my code layout and app invocation does not suit the heuristic the app_root_path() method uses. It would be useful if the dash method could accept a keyword arg for that.
Noticed that the
dashmethod does not accept a keyword arg for the app root path, and instead calls the built inapp_root_path()to determine that here:Dash.jl/src/app/dashapp.jl
Line 330 in 462b215
I am facing an issue where my code layout and app invocation does not suit the heuristic the
app_root_path()method uses. It would be useful if thedashmethod could accept a keyword arg for that.