Logging from a Pluto notebook into the REPL from which it launched

I can’t figure out if run_directory can accept the same kwargs as Pluto.run?

You would need to prefix the keyword arguments with Pluto_<option_type>_ (here option_type = evaluation) so:

PlutoSliderServer.github_action(".";
  Export_cache_dir="pluto_state_cache",
  Export_baked_notebookfile=false,
  Export_baked_state=false,
  Pluto_evaluation_capture_stdout=false,
  # more parameters can go here
)

There may need to enable Pluto_evaluation_workspace_use_distributed_stdlib=true since Malt (the new notebook process manager does not have stdout forwarding).

1 Like